From boxbackup at boxbackup.org Thu Jul 9 08:45:51 2009 From: boxbackup at boxbackup.org (Torsten) Date: Thu, 9 Jul 2009 09:45:51 +0200 Subject: [Box Backup] compile problems Message-ID: <200907090945.54004.ddmails@web.de> Hi, ./boostrap ; ./configure ; make test produces the following errors on my debian lenny. I use last svn snapshot -r2546 To much output, so i put it to: http://pinguinhelge.homelinux.net/bb_test_errors.txt Do i make something wrong? torsten From boxbackup at boxbackup.org Thu Jul 9 15:21:33 2009 From: boxbackup at boxbackup.org (Torsten) Date: Thu, 9 Jul 2009 16:21:33 +0200 Subject: [Box Backup] keeping files 28 days patch Message-ID: <200907091621.35750.ddmails@web.de> --Boundary-00=_vzfVKNfYXskq5qL Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, i build a very little patch that only deletes files from store that are old or deleted and more than 28 days old. So files less that 28 days old are kept. I think such a feature is important for Box Backup but i do not unterstand it completely. - I think this patch generates a new class of file that i do not have a name for. Old and deleted but securely saved. The known old and deleted perhaps saved, because they are deleted if soft limit reached. Should there be new names for the new files? I do not know how other online backup solutions solve this. - So the new soft limit should be calculated from actual data and secure old and deleted files. How could this be done? - Is there a way for the client to tell the server how long to keep the files? Any annotations or ideas? thanks for reading Torsten --Boundary-00=_vzfVKNfYXskq5qL Content-Type: text/x-diff; charset="iso 8859-15"; name="boxbackup_0.11_keep_old_and_deleted_files_28_days.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="boxbackup_0.11_keep_old_and_deleted_files_28_days.diff" Index: bin/bbstored/HousekeepStoreAccount.cpp =================================================================== --- bin/bbstored/HousekeepStoreAccount.cpp (Revision 2546) +++ bin/bbstored/HousekeepStoreAccount.cpp (Arbeitskopie) @@ -25,12 +25,17 @@ #include "autogen_BackupStoreException.h" #include "BackupStoreFile.h" #include "BufferedStream.h" +#include "BoxTime.h" #include "MemLeakFindOn.h" // check every 32 directories scanned/files deleted #define POLL_INTERPROCESS_MSG_CHECK_FREQUENCY 32 +// microseconds of a day +#define MICROSECONDS_OF_A_DAY 1000*1000*3600*24; + + // -------------------------------------------------------------------------- // // Function @@ -461,6 +466,9 @@ BackupStoreDirectory::ReverseIterator i(dir); BackupStoreDirectory::Entry *en = 0; + // timestamp four weeks ago + box_time_t keep_files_msecs = GetCurrentBoxTime() - 28 * (box_time_t)MICROSECONDS_OF_A_DAY; + while((en = i.Next(BackupStoreDirectory::Entry::Flags_File)) != 0) { // This directory references this object @@ -494,9 +502,11 @@ } // enVersionAge is now the age of this version. - // Potentially add it to the list if it's deleted, if it's an old version or deleted - if((enFlags & (BackupStoreDirectory::Entry::Flags_Deleted | BackupStoreDirectory::Entry::Flags_OldVersion)) != 0) + // Potentially add it to the list if it's deleted, if it's an old version or deleted, but only if it older than keep_files_msecs + if(((enFlags & (BackupStoreDirectory::Entry::Flags_Deleted | BackupStoreDirectory::Entry::Flags_OldVersion)) != 0) + && ( keep_files_msecs >= en->GetModificationTime())) { + BOX_INFO("File is older than 4 weeks - adding it to deletion list" << en->GetModificationTime() << "-" << en->GetName().GetEncodedFilename() << "-" << en->GetMarkNumber() ); // Is deleted / old version. DelEn d; d.mObjectID = en->GetObjectID(); --Boundary-00=_vzfVKNfYXskq5qL-- From boxbackup at boxbackup.org Thu Jul 9 19:33:55 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Thu, 9 Jul 2009 19:33:55 +0100 (BST) Subject: [Box Backup] compile problems In-Reply-To: <200907090945.54004.ddmails@web.de> References: <200907090945.54004.ddmails@web.de> Message-ID: Hi Torsten, On Thu, 9 Jul 2009, Torsten wrote: > ./boostrap ; ./configure ; make test produces the following errors on my > debian lenny. I use last svn snapshot -r2546 > > To much output, so i put it to: > > http://pinguinhelge.homelinux.net/bb_test_errors.txt Thanks for testing the current trunk. I'm sorry that you found problems with it. I'm attempting to reproduce them but so far hasn't been able to. Is this a clean checkout or did you update from a previous revision? In the latter case, could you try a clean checkout? If not, is there anything unusual about the host system? Does it have a firewall that prevents loopback connections on port 22011? Do you have something listening on that port? Is it a 64-bit system? Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | From boxbackup at boxbackup.org Thu Jul 9 20:08:33 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Thu, 9 Jul 2009 20:08:33 +0100 (BST) Subject: [Box Backup] keeping files 28 days patch In-Reply-To: <200907091621.35750.ddmails@web.de> References: <200907091621.35750.ddmails@web.de> Message-ID: Hi Torsten, On Thu, 9 Jul 2009, Torsten wrote: > i build a very little patch that only deletes files from store that are > old or deleted and more than 28 days old. So files less that 28 days old > are kept. > > I think such a feature is important for Box Backup but i do not > unterstand it completely. Yes, I think it's a good idea, at least in the mean time until snapshots are fully implemented and the client can control how much history is kept on the store. > - I think this patch generates a new class of file that i do not have a > name for. Old and deleted but securely saved. I don't think it's really anew class of file, it's just a change to how housekeeping removes old files. > The known old and deleted perhaps saved, because they are deleted if > soft limit reached. Should there be new names for the new files? I do > not know how other online backup solutions solve this. I don't know either, but I suspect that most of them use snapshots. E.g. rdiff-backup does. > - So the new soft limit should be calculated from actual data and secure > old and deleted files. How could this be done? Why do we need a new soft limit? Either housekeeping can bring the store under the soft limit or it cannot (because all old files are newer than 28 days). It makes no difference to the client, which will keep uploading files until it hits the hard limit and then stop. > - Is there a way for the client to tell the server how long to keep the > files? Not at the moment, only to mark files to be deleted immediately. > Any annotations or ideas? As this patch is implemented, it's a global option at compile time, and can't be set per account. Making it configurable at runtime would be useful. Making it configurable per account would probably require a change to the account info file format, and I'm reluctant to do that as it would break forwards compatibility at least, and I think snapshots are a better way to implement this in the long run. But I'm seriously considering applying your patch. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | From boxbackup at boxbackup.org Thu Jul 9 21:30:30 2009 From: boxbackup at boxbackup.org (Torsten) Date: Thu, 9 Jul 2009 22:30:30 +0200 Subject: [Box Backup] compile problems In-Reply-To: References: <200907090945.54004.ddmails@web.de> Message-ID: <200907092230.32253.ddmails@web.de> Hi Chris, i made a clean checkout on debian lenny on amd64 and x86. It seems the errors are the same. The output is svn co .. && ./bootstrap && ./configure && make && make test http://pinguinhelge.homelinux.net/bb_test_errors_debian_lenny_amd64.txt http://pinguinhelge.homelinux.net/bb_test_errors_debian_lenny_x86.txt thanks for your work torsten Am Thursday 09 July 2009 20:33:55 schrieb Chris Wilson: > Hi Torsten, > > On Thu, 9 Jul 2009, Torsten wrote: > > ./boostrap ; ./configure ; make test produces the following errors on my > > debian lenny. I use last svn snapshot -r2546 > > > > To much output, so i put it to: > > > > http://pinguinhelge.homelinux.net/bb_test_errors.txt > > Thanks for testing the current trunk. I'm sorry that you found problems > with it. I'm attempting to reproduce them but so far hasn't been able to. > Is this a clean checkout or did you update from a previous revision? In > the latter case, could you try a clean checkout? If not, is there anything > unusual about the host system? Does it have a firewall that prevents > loopback connections on port 22011? Do you have something listening on > that port? Is it a 64-bit system? > > Cheers, Chris. From boxbackup at boxbackup.org Thu Jul 9 21:59:55 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Thu, 9 Jul 2009 21:59:55 +0100 (BST) Subject: [Box Backup] compile problems In-Reply-To: <200907092230.32253.ddmails@web.de> References: <200907090945.54004.ddmails@web.de> <200907092230.32253.ddmails@web.de> Message-ID: This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323328-1937633773-1247173196=:18429 Content-Type: TEXT/PLAIN; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8BIT Hi Torsten, On Thu, 9 Jul 2009, Torsten wrote: > i made a clean checkout on debian lenny on amd64 and x86. It seems the > errors are the same. > > The output is svn co .. && ./bootstrap && ./configure && make && make > test > > http://pinguinhelge.homelinux.net/bb_test_errors_debian_lenny_amd64.txt > http://pinguinhelge.homelinux.net/bb_test_errors_debian_lenny_x86.txt > > thanks for your work I think there must be something weird about your system. I just updated my copy on a Debian Lenny virtual machine and run the backupstore test and it passed. Please could you try it on your own system and see if it passes there, if run on its own? What does this error message mean? "chmod: Zugriff auf ???testfiles??? nicht m??glich: Datei oder Verzeichnis nicht gefunden" I think this may have something to do with the problem, as it happens just before the backupstore test fails. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | --8323328-1937633773-1247173196=:18429-- From boxbackup at boxbackup.org Thu Jul 9 22:05:12 2009 From: boxbackup at boxbackup.org (berni) Date: Thu, 09 Jul 2009 23:05:12 +0200 Subject: [Box Backup] compile problems In-Reply-To: References: <200907090945.54004.ddmails@web.de> <200907092230.32253.ddmails@web.de> Message-ID: <1247173512.3951.1.camel@berni-desktop> --=-UagcCqZvoUhkk4XwPVZ1 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Thu, 2009-07-09 at 21:59 +0100, Chris Wilson wrote: > "chmod: Zugriff auf =C3=A2??testfiles=C3=A2??=20 > nicht m=C3=83=C2=B6glich: Datei oder Verzeichnis nicht gefunden" is german and means $ chmod 777 testfile chmod: cannot access `testfile': No such file or directory (testfile does not exist) --=-UagcCqZvoUhkk4XwPVZ1 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkpWW4YACgkQ9wU+3S/MK7SIPwCfYsyL7E1m7sGNQqm3/nulHW1z TkUAoIeyUo8ShRVAu6WVLgYNiRoWB9am =87pL -----END PGP SIGNATURE----- --=-UagcCqZvoUhkk4XwPVZ1-- From boxbackup at boxbackup.org Thu Jul 9 22:15:37 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Thu, 9 Jul 2009 22:15:37 +0100 (BST) Subject: [Box Backup] compile problems In-Reply-To: <1247173512.3951.1.camel@berni-desktop> References: <200907090945.54004.ddmails@web.de> <200907092230.32253.ddmails@web.de> <1247173512.3951.1.camel@berni-desktop> Message-ID: This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323328-1138276456-1247174137=:18429 Content-Type: TEXT/PLAIN; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8BIT Hi all, On Thu, 9 Jul 2009, berni wrote: > On Thu, 2009-07-09 at 21:59 +0100, Chris Wilson wrote: >> "chmod: Zugriff auf ????testfiles???? >> nicht m????glich: Datei oder Verzeichnis nicht gefunden" > is german and means > > $ chmod 777 testfile > chmod: cannot access `testfile': No such file or directory > > (testfile does not exist) Thanks Berni. Torsten, this may mean that your checked-out copy is not complete. Does test/backupstore/testfiles exist on your system? If not, please try to find out why not. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | --8323328-1138276456-1247174137=:18429-- From boxbackup at boxbackup.org Fri Jul 10 11:40:23 2009 From: boxbackup at boxbackup.org (Torsten) Date: Fri, 10 Jul 2009 12:40:23 +0200 Subject: [Box Backup] compile problems In-Reply-To: References: <200907090945.54004.ddmails@web.de> <1247173512.3951.1.camel@berni-desktop> Message-ID: <200907101240.25246.ddmails@web.de> Sorry but i can not find the error. I tried on 3 different Debian Lenny=20 Systems and one Debian Etch System. I tried latest svn and several older sv= n=20 up to r2503, but always the same errors. test/backupstore/testfiles esists after checkout I cannot find the real problem. One example test is test/basicserver/t makes an=20 cp -p -R ../../../test/basicserver/testfiles . but it should be cp -p -R ../test/basicserver/testfiles . I think there is a problem with the paths. Can anyone other please test this ? Just this: svn co https://www.boxbackup.org/svn/box/trunk/ cd trunk =2E/bootstrap =2E/configure make test thanks torsten Am Thursday 09 July 2009 23:15:37 schrieb Chris Wilson: > Hi all, > > On Thu, 9 Jul 2009, berni wrote: > > On Thu, 2009-07-09 at 21:59 +0100, Chris Wilson wrote: > >> "chmod: Zugriff auf =C3=A2??testfiles=C3=A2?? > >> nicht m=C3=83=C2=B6glich: Datei oder Verzeichnis nicht gefunden" > > > > is german and means > > > > $ chmod 777 testfile > > chmod: cannot access `testfile': No such file or directory > > > > (testfile does not exist) > > Thanks Berni. Torsten, this may mean that your checked-out copy is not > complete. Does test/backupstore/testfiles exist on your system? If not, > please try to find out why not. > > Cheers, Chris. From boxbackup at boxbackup.org Fri Jul 10 11:54:11 2009 From: boxbackup at boxbackup.org (Torsten) Date: Fri, 10 Jul 2009 12:54:11 +0200 Subject: [Box Backup] keeping files 28 days patch In-Reply-To: References: <200907091621.35750.ddmails@web.de> Message-ID: <200907101254.13410.ddmails@web.de> Hi Chris, thanks for the answer. Am Thursday 09 July 2009 21:08:33 schrieb Chris Wilson: > Hi Torsten, > > On Thu, 9 Jul 2009, Torsten wrote: > > i build a very little patch that only deletes files from store that are > > old or deleted and more than 28 days old. So files less that 28 days old > > are kept. > > > > I think such a feature is important for Box Backup but i do not > > unterstand it completely. > > Yes, I think it's a good idea, at least in the mean time until snapshots > are fully implemented and the client can control how much history is kept > on the store. Is there any documentation about this snapshot mode and how it will work? I did not find anything in the wiki about that. > > - I think this patch generates a new class of file that i do not have a > > name for. Old and deleted but securely saved. > > I don't think it's really anew class of file, it's just a change to how > housekeeping removes old files. > > > The known old and deleted perhaps saved, because they are deleted if > > soft limit reached. Should there be new names for the new files? I do > > not know how other online backup solutions solve this. > > I don't know either, but I suspect that most of them use snapshots. E.g. > rdiff-backup does. > > > - So the new soft limit should be calculated from actual data and secure > > old and deleted files. How could this be done? > > Why do we need a new soft limit? Either housekeeping can bring the store > under the soft limit or it cannot (because all old files are newer than 28 > days). It makes no difference to the client, which will keep uploading > files until it hits the hard limit and then stop. I think there is a problem for the user. "bbackupquery usage" does not show me if i should increase backup store limit. Because i see that hard limit is reached but there are many old and deleted files. So i think housekeeping will delete them. But the 28 day patch can produce the following situation. Old and deleted files < 28 day are not deleted, but new files cannot be uploaded. What do you think? > > - Is there a way for the client to tell the server how long to keep the > > files? > > Not at the moment, only to mark files to be deleted immediately. > > > Any annotations or ideas? > > As this patch is implemented, it's a global option at compile time, and > can't be set per account. Making it configurable at runtime would be > useful. Making it configurable per account would probably require a change > to the account info file format, and I'm reluctant to do that as it would > break forwards compatibility at least, and I think snapshots are a better > way to implement this in the long run. But I'm seriously considering > applying your patch. Making it configurable at runtime should be possible. Per account settings is not as important i think. If this patch is applied it could be disabled in default configuration, so nobody should have a problem i think. have a nice weekend torsten From boxbackup at boxbackup.org Fri Jul 10 13:53:25 2009 From: boxbackup at boxbackup.org (Dave Bamford) Date: Fri, 10 Jul 2009 13:53:25 +0100 Subject: [Box Backup] compile problems In-Reply-To: <200907101240.25246.ddmails@web.de> References: <200907090945.54004.ddmails@web.de> <1247173512.3951.1.camel@berni-desktop> <200907101240.25246.ddmails@web.de> Message-ID: <4A5739C5.9010202@logical-progress.com> Hi Torsten I am running Debian Lenny 64 bit and here are my test results, the errors may be because I have a backup client running already > common: PASSED > crypto: PASSED > compress: PASSED > raidfile: PASSED > basicserver: PASSED > backupstore: PASSED > backupstorefix: PASSED > backupstorepatch: FAILED: Exception caught: Connection > SocketConnectError (Probably a network issue between client and > server, bad hostname, or server not running.) > backupdiff: PASSED > bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) > httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:411) results of .configure are Regular expressions: yes Large files: yes Berkeley DB: yes Readline: no Extended attributes: yes If you want me to send you the full test results I can send an attachment by private email Regards Dave Torsten wrote: > Sorry but i can not find the error. I tried on 3 different Debian Lenny > Systems and one Debian Etch System. I tried latest svn and several older svn > up to r2503, but always the same errors. > > test/backupstore/testfiles esists after checkout > > I cannot find the real problem. One example test is > > test/basicserver/t > > makes an > > cp -p -R ../../../test/basicserver/testfiles . > > but it should be > > cp -p -R ../test/basicserver/testfiles . > > I think there is a problem with the paths. > > Can anyone other please test this ? Just this: > > svn co https://www.boxbackup.org/svn/box/trunk/ > cd trunk > ./bootstrap > ./configure > make test > > thanks > torsten > > Am Thursday 09 July 2009 23:15:37 schrieb Chris Wilson: > >> Hi all, >> >> On Thu, 9 Jul 2009, berni wrote: >> >>> On Thu, 2009-07-09 at 21:59 +0100, Chris Wilson wrote: >>> >>>> "chmod: Zugriff auf ????testfiles???? >>>> nicht m????glich: Datei oder Verzeichnis nicht gefunden" >>>> >>> is german and means >>> >>> $ chmod 777 testfile >>> chmod: cannot access `testfile': No such file or directory >>> >>> (testfile does not exist) >>> >> Thanks Berni. Torsten, this may mean that your checked-out copy is not >> complete. Does test/backupstore/testfiles exist on your system? If not, >> please try to find out why not. >> >> Cheers, Chris. >> > _______________________________________________ > boxbackup mailing list > boxbackup at boxbackup.org > http://lists.warhead.org.uk/mailman/listinfo/boxbackup > From boxbackup at boxbackup.org Fri Jul 10 17:05:42 2009 From: boxbackup at boxbackup.org (berni) Date: Fri, 10 Jul 2009 18:05:42 +0200 Subject: [Box Backup] compile problems In-Reply-To: <200907101240.25246.ddmails@web.de> References: <200907090945.54004.ddmails@web.de> <1247173512.3951.1.camel@berni-desktop> <200907101240.25246.ddmails@web.de> Message-ID: <1247241942.3847.17.camel@berni-desktop> --=-K78qE5ScLDCbXilqvV6w Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable ubuntu jaunty 64bit (never run boxbackup @ this maschine) Regular expressions: yes Large files: yes Berkeley DB: no Readline: no Extended attributes: yes -------- common: PASSED crypto: PASSED compress: PASSED raidfile: PASSED basicserver: PASSED backupstore: FAILED: 2 tests failed (first at Test.cpp:291) backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) backupdiff: PASSED bbackupd: make failed errors like /usr/include/bits/fcntl2.h:51: error: call to =E2=80=98__open_missing_mode= =E2=80=99 declared with attribute error: open with O_CREAT in second argument needs 3 arguments ... TEST: test/common Killing any running daemons... Removing old test files... chmod: cannot access `testfiles': No such file or directory Copying new test files... WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) WARNING: Failed to open file: testfiles/tempfile: No such file or directory (2) ... but the testfiles dir exist but there is no file called tempfile ./release/test/httpserver/testfiles ./release/test/backupdiff/testfiles ./release/test/backupstorepatch/testfiles ./release/test/backupstorefix/testfiles ./release/test/backupstore/testfiles ./release/test/basicserver/testfiles ./release/test/raidfile/testfiles ./release/test/common/testfiles ./test/bbackupd/testfiles ./test/backupstorefix/testfiles ./test/common/testfiles ./test/basicserver/testfiles ./test/httpserver/testfiles ./test/backupstore/testfiles ./test/raidfile/testfiles berni at berni-desktop:/tmp/boxbackup/trunk$ ls test/common/testfiles/ config10.txt config13.txt config16.txt config3.txt config6.txt config9b.txt config9.txt config11.txt config14.txt config1.txt config4.txt config7.txt config9c.txt fdgetlinetest.txt config12.txt config15.txt config2.txt config5.txt config8.txt config9d.txt berni at berni-desktop:/tmp/boxbackup/trunk$=20 yours berni On Fri, 2009-07-10 at 12:40 +0200, Torsten wrote: > Sorry but i can not find the error. I tried on 3 different Debian Lenny=20 > Systems and one Debian Etch System. I tried latest svn and several older = svn=20 > up to r2503, but always the same errors. >=20 > test/backupstore/testfiles esists after checkout >=20 > I cannot find the real problem. One example test is >=20 > test/basicserver/t >=20 > makes an=20 >=20 > cp -p -R ../../../test/basicserver/testfiles . >=20 > but it should be >=20 > cp -p -R ../test/basicserver/testfiles . >=20 > I think there is a problem with the paths. >=20 > Can anyone other please test this ? Just this: >=20 > svn co https://www.boxbackup.org/svn/box/trunk/ > cd trunk > ./bootstrap > ./configure > make test >=20 > thanks > torsten >=20 > Am Thursday 09 July 2009 23:15:37 schrieb Chris Wilson: > > Hi all, > > > > On Thu, 9 Jul 2009, berni wrote: > > > On Thu, 2009-07-09 at 21:59 +0100, Chris Wilson wrote: > > >> "chmod: Zugriff auf =C3=A2??testfiles=C3=A2?? > > >> nicht m=C3=83=C2=B6glich: Datei oder Verzeichnis nicht gefunden" > > > > > > is german and means > > > > > > $ chmod 777 testfile > > > chmod: cannot access `testfile': No such file or directory > > > > > > (testfile does not exist) > > > > Thanks Berni. Torsten, this may mean that your checked-out copy is not > > complete. Does test/backupstore/testfiles exist on your system? If not, > > please try to find out why not. > > > > Cheers, Chris. > _______________________________________________ > boxbackup mailing list > boxbackup at boxbackup.org > http://lists.warhead.org.uk/mailman/listinfo/boxbackup --=-K78qE5ScLDCbXilqvV6w Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkpXZtQACgkQ9wU+3S/MK7RfygCfUQQnT9RuVg4s5wFc7v+G0kSI 30UAnjbKsRTrFl6ZVhF7YVb98nR81m+p =boSu -----END PGP SIGNATURE----- --=-K78qE5ScLDCbXilqvV6w-- From boxbackup at boxbackup.org Fri Jul 10 20:03:07 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Fri, 10 Jul 2009 20:03:07 +0100 (BST) Subject: [Box Backup] keeping files 28 days patch In-Reply-To: <200907101254.13410.ddmails@web.de> References: <200907091621.35750.ddmails@web.de> <200907101254.13410.ddmails@web.de> Message-ID: Hi Torsten, On Fri, 10 Jul 2009, Torsten wrote: > Am Thursday 09 July 2009 21:08:33 schrieb Chris Wilson: >> On Thu, 9 Jul 2009, Torsten wrote: >>> i build a very little patch that only deletes files from store that are >>> old or deleted and more than 28 days old. So files less that 28 days old >>> are kept. >>> >>> I think such a feature is important for Box Backup but i do not >>> unterstand it completely. >> >> Yes, I think it's a good idea, at least in the mean time until snapshots >> are fully implemented and the client can control how much history is kept >> on the store. > > Is there any documentation about this snapshot mode and how it will work? I > did not find anything in the wiki about that. I don't think there is much at the moment. Ben described his proposal here: http://www.boxbackup.org/trac/wiki/020Redesign#Directorystructure. This is basically what I'm planning to implement, in stages. It will store each backup as a separate directory under the root of the server, which will allow you to: * see what files were in each backup; * restore a directory to exactly the state that it was at a given point in time in the past (modulo changes during the backup); * manage how much history you keep on the store by deleting old versions (e.g. grandfather-father-son); * behave more like tape (which allows recycling old tapes). >>> - So the new soft limit should be calculated from actual data and >>> secure old and deleted files. How could this be done? >> >> Why do we need a new soft limit? Either housekeeping can bring the >> store under the soft limit or it cannot (because all old files are >> newer than 28 days). It makes no difference to the client, which will >> keep uploading files until it hits the hard limit and then stop. > > I think there is a problem for the user. "bbackupquery usage" does not > show me if i should increase backup store limit. Because i see that hard > limit is reached but there are many old and deleted files. So i think > housekeeping will delete them. But the 28 day patch can produce the > following situation. Old and deleted files < 28 day are not deleted, but > new files cannot be uploaded. What do you think? I think that if the account is over the soft limit after housekeeping has run, then you may need to increase the soft limit, or else wait for deleted files to become old enough that they will be deleted automatically. I think what you need to watch for is the free space (hard limit - used space) to determine whether the client can still back up normally. Does that make sense? Am I missing something? >> As this patch is implemented, it's a global option at compile time, and >> can't be set per account. Making it configurable at runtime would be >> useful. Making it configurable per account would probably require a >> change to the account info file format, and I'm reluctant to do that as >> it would break forwards compatibility at least, and I think snapshots >> are a better way to implement this in the long run. But I'm seriously >> considering applying your patch. > > Making it configurable at runtime should be possible. Per account > settings is not as important i think. If this patch is applied it could > be disabled in default configuration, so nobody should have a problem i > think. I think it will break the current tests as they are designed to reduce the soft limit and watch the server deleting old revisions whenever it runs housekeeping. This would not happen with the patch applied unless the time to keep revisions for the test was set very low. That makes it non-trivial to apply the patch, because I need to keep all tests passing, so I need to make the minimum age of deleted files configurable - and test that the patch is actually working. However that does not mean that I won't implement this feature. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | From boxbackup at boxbackup.org Sat Jul 11 03:41:34 2009 From: boxbackup at boxbackup.org (Cheryl Gutierrez) Date: Sat, 11 Jul 2009 02:41:34 +0000 Subject: [Box Backup] (no subject) Message-ID: <20090711024136.AB2AF325037@www.boxbackup.org> Hey From boxbackup at boxbackup.org Wed Jul 8 17:13:07 2009 From: boxbackup at boxbackup.org (Torsten) Date: Wed, 8 Jul 2009 18:13:07 +0200 Subject: [Box Backup] compile problems Message-ID: <200907081813.10695.ddmails@web.de> Hi, =2E/boostrap ; ./configure ; make test produces the following errors on my= =20 debian lenny. I use last svn snapshot -r2546 Do i make something wrong? torsten Timer.cpp: In static member function =E2=80=98static void Timers::Cleanup()= =E2=80=99: Timer.cpp:86: warning: unused variable =E2=80=98result=E2=80=99 BackupStoreFile.cpp: In static member function =E2=80=98static void=20 BackupStoreFile::DecodeFile(IOStream&, const char*, int, const=20 BackupClientFileAttributes*)=E2=80=99: BackupStoreFile.cpp:304: warning: unused variable =E2=80=98drained=E2=80=99 HousekeepStoreAccount.cpp: In member function =E2=80=98void=20 HousekeepStoreAccount::DoHousekeeping(bool)=E2=80=99: HousekeepStoreAccount.cpp:262: warning: comparison between signed and unsig= ned=20 integer expressions HousekeepStoreAccount.cpp: In member function =E2=80=98bool=20 HousekeepStoreAccount::ScanDirectory(int64_t)=E2=80=99: HousekeepStoreAccount.cpp:467: warning: comparison between signed and unsig= ned=20 integer expressions HousekeepStoreAccount.cpp:582: warning: comparison between signed and unsig= ned=20 integer expressions testbackupstore.cpp: In function =E2=80=98void=20 test_everything_deleted(BackupProtocolClient&, int64_t)=E2=80=99: testbackupstore.cpp:440: warning: format =E2=80=98%llx=E2=80=99 expects typ= e =E2=80=98long long=20 unsigned int=E2=80=99, but argument 2 has type =E2=80=98int64_t=E2=80=99 testbackupstore.cpp: In function =E2=80=98void set_refcount(int64_t, uint32= _t)=E2=80=99: testbackupstore.cpp:481: warning: comparison between signed and unsigned=20 integer expressions testbackupstore.cpp: In function =E2=80=98int64_t=20 create_test_data_subdirs(BackupProtocolClient&, int64_t, const char*, int,= =20 BackupStoreRefCountDatabase&)=E2=80=99: testbackupstore.cpp:524: warning: format =E2=80=98%llx=E2=80=99 expects typ= e =E2=80=98long long=20 unsigned int=E2=80=99, but argument 3 has type =E2=80=98int64_t=E2=80=99 testbackupstorepatch.cpp: In function =E2=80=98int test(int, const char**)= =E2=80=99: testbackupstorepatch.cpp:411: warning: format =E2=80=98%lld=E2=80=99 expect= s type =E2=80=98long long=20 int=E2=80=99, but argument 2 has type =E2=80=98int64_t=E2=80=99 make: *** [release/common/test] Fehler 1 e/test/common/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/common' TEST: test/common Killing any running daemons... Removing old test files... Copying new test files... WARNING: Failed to open file: testfiles/tempfile: No such file or directory= =20 (2) WARNING: Failed to open file: testfiles/tempfile: No such file or directory= =20 (2) ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': No s= uch=20 file or directory (2) ERROR: Missing configuration key: not exist ERROR: Error verifying configuration: .TOPlevel (key) is missing. ERROR: Error in Configuration::LoadInto: Unexpected start block in test1 ERROR: Error in Configuration::LoadInto: Root level has close block --=20 forgot to terminate subblock? ERROR: Error in Configuration::LoadInto: Block subconfig2 wasn't started= =20 correctly (no '{' on line of it's own) Root level has close block -- forgot to terminate subblock? ERROR: Error verifying configuration: test1.subconfig2.bing (key) multi=20 value not allowed (duplicated key?). ERROR: Error in Configuration::LoadInto: Invalid configuration key: =3D=20 invalid thing here! ERROR: Error in Configuration::LoadInto: File ended without terminating a= ll=20 subblocks ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is n= ot=20 a valid integer. ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is n= ot=20 a valid integer. ERROR: Error verifying configuration: test1.subconfig2.carrots (key) is n= ot=20 a valid integer. ERROR: Error verifying configuration: test1.subconfig3.carrots (key) is n= ot=20 a valid integer. ERROR: Error verifying configuration: test1.subconfig.carrots (key) is=20 missing. ERROR: Error verifying configuration: test1.subconfig3.NOTEXPECTED (key) = is=20 not a known key. Check spelling and placement. ERROR: Error verifying configuration: .test1.otherthing (block) is= =20 missing. ERROR: Error verifying configuration: .test1.* (block) is missing (= a=20 block must be present). .test1.otherthing (block) is missing. ERROR: Error verifying configuration: .BoolTrue1 (key) is not a val= id=20 boolean value. WARNING: Failed to open lockfile: testfiles/non-exist/lock ERROR: Invalid regular expression: [:not_valid: Unmatched [ or [^ WARNING: Exclude entry ends in path separator, will never match: /foo/ WARNING: Exclude entry ends in path separator, will never match: /foo/ WARNING: Exclude entry ends in path separator, will never match: /foo/ NOTICE: Running test common in release mode... (testfiles/config2.txt) Error msg is: =2D----- .TOPlevel (key) is missing. =2D----- (testfiles/config3.txt) Error msg is: =2D----- Unexpected start block in test1 =2D----- (testfiles/config4.txt) Error msg is: =2D----- Root level has close block -- forgot to terminate subblock? =2D----- (testfiles/config5.txt) Error msg is: =2D----- Block subconfig2 wasn't started correctly (no '{' on line of it's own) Root level has close block -- forgot to terminate subblock? =2D----- (testfiles/config6.txt) Error msg is: =2D----- test1.subconfig2.bing (key) multi value not allowed (duplicated key?). =2D----- (testfiles/config7.txt) Error msg is: =2D----- Invalid configuration key: =3D invalid thing here! =2D----- (testfiles/config8.txt) Error msg is: =2D----- =46ile ended without terminating all subblocks =2D----- (testfiles/config9.txt) Error msg is: =2D----- test1.subconfig3.carrots (key) is not a valid integer. =2D----- (testfiles/config9b.txt) Error msg is: =2D----- test1.subconfig2.carrots (key) is not a valid integer. =2D----- (testfiles/config9c.txt) Error msg is: =2D----- test1.subconfig2.carrots (key) is not a valid integer. =2D----- (testfiles/config9d.txt) Error msg is: =2D----- test1.subconfig3.carrots (key) is not a valid integer. =2D----- (testfiles/config10.txt) Error msg is: =2D----- test1.subconfig.carrots (key) is missing. =2D----- (testfiles/config11.txt) Error msg is: =2D----- test1.subconfig3.NOTEXPECTED (key) is not a known key. Check spelling and=20 placement. =2D----- (testfiles/config12.txt) Error msg is: =2D----- .test1.otherthing (block) is missing. =2D----- (testfiles/config13.txt) Error msg is: =2D----- .test1.* (block) is missing (a block must be present). .test1.otherthing (block) is missing. =2D----- (testfiles/config16.txt) Error msg is: =2D----- .BoolTrue1 (key) is not a valid boolean value. =2D----- PASSED make[1]: Entering directory `/tmp/boxtest/trunk/test/crypto' make[2]: Entering directory `/tmp/boxtest/trunk/lib/crypto' [CXX] CipherAES.cpp [CXX] CipherBlowfish.cpp [CXX] CipherContext.cpp [CXX] CipherDescription.cpp [CXX] MD5Digest.cpp [CXX] Random.cpp [CXX] RollingChecksum.cpp [CXX] autogen_CipherException.cpp [AR] ../../release/lib/crypto/crypto.a [RANLIB] ../../release/lib/crypto/crypto.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/crypto' [CXX] _main.cpp [CXX] testcrypto.cpp [LINK] ../../release/test/crypto/test cp _t ../../release/test/crypto/t chmod u+x ../../release/test/crypto/t cp _t-gdb ../../release/test/crypto/t-gdb chmod u+x ../../release/test/crypto/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/crypto' TEST: test/crypto Removing old test files... chmod: Zugriff auf =E2=80=9Etestfiles=E2=80=9C nicht m=C3=B6glich: Datei od= er Verzeichnis nicht=20 gefunden Copying new test files... cp: Aufruf von stat f=C3=BCr =E2=80=9E../../../test/crypto/testfiles=E2=80= =9C nicht m=C3=B6glich: Datei=20 oder Verzeichnis nicht gefunden NOTICE: Running test crypto in release mode... Blowfish... AES... Misc... PASSED make[1]: Entering directory `/tmp/boxtest/trunk/test/compress' make[2]: Entering directory `/tmp/boxtest/trunk/lib/compress' [CXX] CompressStream.cpp [CXX] autogen_CompressException.cpp [AR] ../../release/lib/compress/compress.a [RANLIB] ../../release/lib/compress/compress.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/compress' [CXX] _main.cpp [CXX] testcompress.cpp [LINK] ../../release/test/compress/test cp _t ../../release/test/compress/t chmod u+x ../../release/test/compress/t cp _t-gdb ../../release/test/compress/t-gdb chmod u+x ../../release/test/compress/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/compress' TEST: test/compress Removing old test files... chmod: Zugriff auf =E2=80=9Etestfiles=E2=80=9C nicht m=C3=B6glich: Datei od= er Verzeichnis nicht=20 gefunden Copying new test files... cp: Aufruf von stat f=C3=BCr =E2=80=9E../../../test/compress/testfiles=E2= =80=9C nicht m=C3=B6glich:=20 Datei oder Verzeichnis nicht gefunden NOTICE: Running test compress in release mode... PASSED make[1]: Entering directory `/tmp/boxtest/trunk/test/raidfile' make[2]: Entering directory `/tmp/boxtest/trunk/lib/intercept' [CXX] intercept.cpp [AR] ../../release/lib/intercept/intercept.a [RANLIB] ../../release/lib/intercept/intercept.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/intercept' make[2]: Entering directory `/tmp/boxtest/trunk/lib/raidfile' [CXX] RaidFileController.cpp [CXX] RaidFileRead.cpp [CXX] RaidFileUtil.cpp [CXX] RaidFileWrite.cpp [CXX] autogen_RaidFileException.cpp [AR] ../../release/lib/raidfile/raidfile.a [RANLIB] ../../release/lib/raidfile/raidfile.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/raidfile' [CXX] _main.cpp [CXX] testraidfile.cpp [LINK] ../../release/test/raidfile/test cp _t ../../release/test/raidfile/t chmod u+x ../../release/test/raidfile/t cp _t-gdb ../../release/test/raidfile/t-gdb chmod u+x ../../release/test/raidfile/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/raidfile' TEST: test/raidfile Killing any running daemons... Removing old test files... Copying new test files... ERROR: Attempted to delete object write1 which has 1 references ERROR: Attempted to modify object write1, which has no references ERROR: Attempted to modify object write1, which has 2 references ERROR: Attempted to overwrite raidfile 0 test1 ERROR: Expected raidfile doesnt-exist does not exist ERROR: Opening 0 damage in normal mode, but parity file doesn't exist ERROR: Attempting to open RAID file 0 damage in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testdd stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testdd stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: I/O error when seeking in 0 testdd (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: I/O error when seeking in 0 testdd (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 1 ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 2=20 present) WARNING: Attempting to recover from I/O error: 0 testdd, on stripe 2 ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testdd in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 test2 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 test2 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: I/O error when seeking in 0 test2 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: I/O error when seeking in 0 test2 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 0 test2, on stripe 1 ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 2=20 present) WARNING: Attempting to recover from I/O error: 0 test2, on stripe 2 ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 test2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testThree stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testThree stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testThree (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testThree (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 1 ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testThree, on stripe 2 ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testThree in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testX stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testX stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: I/O error when seeking in 1 testX (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: I/O error when seeking in 1 testX (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 1 testX, on stripe 1 ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 2=20 present) WARNING: Attempting to recover from I/O error: 1 testX, on stripe 2 ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testX in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall0 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall0 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall0 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall1 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall1 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall1, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall1 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall2 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall2 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall2, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall2 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall3 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall3 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall3, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall3 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall4 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall4 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall4, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall4 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testSmall5 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testSmall5 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testSmall5, on stripe 1 ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall5 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testSmall6 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testSmall6 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testSmall6, on stripe 1 ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testSmall6 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall7 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall7 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall7, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall7 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall8 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall8 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall8, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall8 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall9 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall9 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall9, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall9 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall10 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testSmall10 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 1=20 present) WARNING: Attempting to recover from I/O error: 1 testSmall10, on stripe 1 ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 1 testSmall10 in recovery mode (strip= e 2=20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testfour stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testfour stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: I/O error when seeking in 0 testfour (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: I/O error when seeking in 0 testfour (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 1 ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 2= =20 present) WARNING: Attempting to recover from I/O error: 0 testfour, on stripe 2 ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testfour in recovery mode (stripe 1= =20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN0 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN0 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN0 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN1 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN1 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN1, on stripe 1 ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN1 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN2, on stripe 1 ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN2 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN7 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN7 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN7, on stripe 1 ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN7 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8, on stripe 1 ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN8 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN9 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN9 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN9, on stripe 1 ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 1 testN9 in recovery mode (stripe 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN1027 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN1027 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN1027 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN1027, on stripe 1 ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN1027 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2039 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2039 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2039 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2039, on stripe 1 ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2039 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2040 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2040 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2040 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2040, on stripe 1 ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2040 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2041 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2041 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2041 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2041, on stripe 1 ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2041 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2042 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2042 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2042 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2042, on stripe 1 ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2042 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2043 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2043 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2043 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2043, on stripe 1 ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2043 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2044 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2044 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2044 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2044, on stripe 1 ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2044 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2045 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2045 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2045 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2045, on stripe 1 ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2045 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2046 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2046 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2046 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2046, on stripe 1 ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2046 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2047 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2047 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2047 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2047, on stripe 1 ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2047 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2048 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2048 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2048 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2048, on stripe 1 ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2048 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2049 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2049 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2049 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 1 ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2049, on stripe 2 ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2049 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2050 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2050 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2050 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 1 ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2050, on stripe 2 ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2050 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2055 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2055 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN2055 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 1 ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2055, on stripe 2 ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2055 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2056 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN2056 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN2056 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 1 ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN2056, on stripe 2 ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN2056 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2057 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN2057 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN2057 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 1 ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN2057, on stripe 2 ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN2057 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN3075 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN3075 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN3075 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 1 ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN3075, on stripe 2 ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN3075 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4087 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4087 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4087 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 1 ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4087, on stripe 2 ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4087 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4088 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4088 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4088 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 1 ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4088, on stripe 2 ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4088 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4089 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4089 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4089 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 1 ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4089, on stripe 2 ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4089 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4090 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4090 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4090 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 1 ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4090, on stripe 2 ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4090 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4091 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4091 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4091 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 1 ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4091, on stripe 2 ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4091 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4092 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4092 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4092 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 1 ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4092, on stripe 2 ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4092 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4093 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4093 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4093 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 1 ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4093, on stripe 2 ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4093 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4094 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4094 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4094 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 1 ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4094, on stripe 2 ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4094 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4095 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4095 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4095 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 1 ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4095, on stripe 2 ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4095 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4096 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4096 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4096 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 1 ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4096, on stripe 2 ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4096 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4097 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4097 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4097 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 1 ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4097, on stripe 2 ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4097 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4098 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4098 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4098 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 1 ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4098, on stripe 2 ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4098 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4103 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4103 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4103 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 1 ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4103, on stripe 2 ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4103 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4104 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN4104 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN4104 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 1 ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN4104, on stripe 2 ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN4104 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4105 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN4105 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN4105 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 1 ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN4105, on stripe 2 ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN4105 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN5123 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN5123 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN5123 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 1 ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN5123, on stripe 2 ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN5123 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6135 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6135 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6135 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 1 ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6135, on stripe 2 ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6135 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6136 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6136 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6136 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 1 ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6136, on stripe 2 ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6136 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6137 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6137 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6137 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 1 ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6137, on stripe 2 ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6137 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6138 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6138 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6138 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 1 ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6138, on stripe 2 ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6138 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6139 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6139 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6139 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 1 ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6139, on stripe 2 ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6139 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6140 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6140 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6140 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 1 ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6140, on stripe 2 ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6140 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6141 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6141 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6141 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 1 ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6141, on stripe 2 ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6141 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6142 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6142 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6142 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 1 ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6142, on stripe 2 ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6142 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6143 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6143 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6143 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 1 ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6143, on stripe 2 ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6143 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6144 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6144 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6144 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 1 ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6144, on stripe 2 ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6144 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6145 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6145 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6145 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 1 ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6145, on stripe 2 ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6145 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6146 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6146 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6146 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 1 ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6146, on stripe 2 ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6146 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6151 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6151 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6151 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 1 ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6151, on stripe 2 ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6151 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6152 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN6152 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN6152 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 1 ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN6152, on stripe 2 ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN6152 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6153 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN6153 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN6153 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 1 ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN6153, on stripe 2 ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN6153 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN7171 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN7171 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN7171 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 1 ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN7171, on stripe 2 ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN7171 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8183 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8183 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8183 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 1 ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8183, on stripe 2 ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8183 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8184 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8184 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8184 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 1 ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8184, on stripe 2 ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8184 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8185 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8185 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8185 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 1 ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8185, on stripe 2 ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8185 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8186 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8186 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8186 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 1 ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8186, on stripe 2 ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8186 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8187 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8187 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8187 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 1 ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8187, on stripe 2 ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8187 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8188 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8188 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8188 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 1 ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8188, on stripe 2 ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8188 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8189 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8189 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8189 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 1 ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8189, on stripe 2 ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8189 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8190 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8190 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8190 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 1 ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8190, on stripe 2 ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8190 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8191 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8191 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8191 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 1 ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8191, on stripe 2 ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8191 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8192 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8192 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8192 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 1 ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8192, on stripe 2 ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8192 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8193 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8193 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8193 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 1 ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8193, on stripe 2 ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8193 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8194 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8194 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8194 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 1 ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8194, on stripe 2 ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8194 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8199 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8199 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8199 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 1 ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8199, on stripe 2 ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8199 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8200 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN8200 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN8200 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 1 ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN8200, on stripe 2 ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN8200 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8201 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN8201 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 1 testN8201 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 1 ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN8201, on stripe 2 ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN8201 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN9219 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN9219 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: I/O error when seeking in 0 testN9219 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 1 ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN9219, on stripe 2 ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 0 testN9219 in recovery mode (stripe = 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10231 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10231 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10231 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 1 ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10231, on stripe 2 ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10231 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10232 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10232 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10232 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 1 ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10232, on stripe 2 ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10232 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10233 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10233 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10233 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 1 ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10233, on stripe 2 ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10233 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10234 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10234 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10234 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 1 ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10234, on stripe 2 ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10234 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10235 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10235 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10235 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 1 ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10235, on stripe 2 ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10235 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10236 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10236 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10236 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 1 ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10236, on stripe 2 ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10236 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10237 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10237 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10237 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 1 ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10237, on stripe 2 ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10237 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10238 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10238 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10238 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 1 ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10238, on stripe 2 ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10238 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10239 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10239 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10239 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 1 ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10239, on stripe 2 ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10239 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10240 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10240 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10240 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 1 ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10240, on stripe 2 ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10240 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10241 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10241 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10241 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 1 ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10241, on stripe 2 ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10241 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10242 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10242 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10242 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 1 ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10242, on stripe 2 ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10242 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10247 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10247 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10247 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 1 ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10247, on stripe 2 ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10247 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10248 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN10248 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN10248 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 1 ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN10248, on stripe 2 ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN10248 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10249 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN10249 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN10249 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 1 ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN10249, on stripe 2 ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN10249 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN11267 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN11267 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN11267 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 1 ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN11267, on stripe 2 ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN11267 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12279 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12279 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN12279 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 1 ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN12279, on stripe 2 ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12279 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12280 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12280 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN12280 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 1 ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN12280, on stripe 2 ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12280 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12281 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12281 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN12281 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 1 ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN12281, on stripe 2 ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12281 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12282 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12282 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN12282 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 1 ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN12282, on stripe 2 ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12282 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12283 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12283 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN12283 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 1 ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN12283, on stripe 2 ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12283 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12284 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12284 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN12284 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 1 ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN12284, on stripe 2 ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12284 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12285 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12285 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN12285 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 1 ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN12285, on stripe 2 ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12285 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12286 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 0 testN12286 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 0 testN12286 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 1 ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 0 testN12286, on stripe 2 ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 0 testN12286 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12287 stripe 1, trying recovery mode ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) WARNING: Exception thrown: RaidFileException(ErrorOpeningFileForRead) at=20 RaidFileRead.cpp(1091) ERROR: I/O error on opening 1 testN12287 stripe 2, trying recovery mode ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 1 WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: I/O error when seeking in 1 testN12287 (to 1), stripe 2 WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 1 ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 2=20 present) WARNING: Attempting to recover from I/O error: 1 testN12287, on stripe 2 ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) ERROR: Attempting to open RAID file 1 testN12287 in recovery mode (stripe= 1=20 present) NOTICE: Running test raidfile in release mode... PASSED make[1]: Entering directory `/tmp/boxtest/trunk/test/basicserver' make[2]: Entering directory `/tmp/boxtest/trunk/lib/server' [CXX] Daemon.cpp [CXX] LocalProcessStream.cpp [CXX] Protocol.cpp [CXX] ProtocolObject.cpp [CXX] ProtocolUncertainStream.cpp [CXX] SSLLib.cpp [CXX] ServerControl.cpp [CXX] Socket.cpp [CXX] SocketStream.cpp [CXX] SocketStreamTLS.cpp [CXX] TLSContext.cpp [CXX] WinNamedPipeStream.cpp [CXX] autogen_ConnectionException.cpp [CXX] autogen_ServerException.cpp [AR] ../../release/lib/server/server.a [RANLIB] ../../release/lib/server/server.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/server' [CXX] TestCommands.cpp [CXX] TestContext.cpp [CXX] _main.cpp [CXX] autogen_TestProtocolClient.cpp [CXX] autogen_TestProtocolServer.cpp [CXX] testbasicserver.cpp [LINK] ../../release/test/basicserver/test cp _t ../../release/test/basicserver/t chmod u+x ../../release/test/basicserver/t cp _t-gdb ../../release/test/basicserver/t-gdb chmod u+x ../../release/test/basicserver/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/basicserver' TEST: test/basicserver Killing any running daemons... Removing old test files... Copying new test files... NOTICE: Running test basicserver in release mode... Starting server: ./test --test-daemon-args=3D srv1 testfiles/srv1.conf Waiting for server to start: done. Waiting for server to die (pid 1673): . done. Starting server: ./test --test-daemon-args=3D srv2 testfiles/srv2.conf Waiting for server to start: done. Waiting for server to die (pid 1680): . done. Starting server: ./test --test-daemon-args=3D srv3 testfiles/srv3.conf Waiting for server to start: done. Connected to 'SERVER' Connected to 'SERVER' Connected to 'SERVER' Waiting for server to die (pid 1691): . done. Starting server: ./test --test-daemon-args=3D srv4 testfiles/srv4.conf Waiting for server to start: done. stream is fixed size stream is uncertain size stream is fixed size stream is uncertain size Waiting for server to die (pid 1710): . done. PASSED make[1]: Entering directory `/tmp/boxtest/trunk/test/backupstore' make[2]: Entering directory `/tmp/boxtest/trunk/lib/backupclient' [CXX] BackupClientCryptoKeys.cpp [CXX] BackupClientFileAttributes.cpp [CXX] BackupClientMakeExcludeList.cpp [CXX] BackupClientRestore.cpp [CXX] BackupDaemonConfigVerify.cpp [CXX] BackupStoreDirectory.cpp [CXX] BackupStoreFile.cpp [CXX] BackupStoreFileCmbDiff.cpp [CXX] BackupStoreFileCmbIdx.cpp [CXX] BackupStoreFileCombine.cpp [CXX] BackupStoreFileCryptVar.cpp [CXX] BackupStoreFileDiff.cpp [CXX] BackupStoreFileEncodeStream.cpp [CXX] BackupStoreFileRevDiff.cpp [CXX] BackupStoreFilename.cpp [CXX] BackupStoreFilenameClear.cpp [CXX] BackupStoreObjectDump.cpp [CXX] autogen_BackupProtocolClient.cpp [CXX] autogen_BackupStoreException.cpp [AR] ../../release/lib/backupclient/backupclient.a [RANLIB] ../../release/lib/backupclient/backupclient.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/backupclient' make[2]: Entering directory `/tmp/boxtest/trunk/lib/backupstore' [CXX] BackupStoreAccountDatabase.cpp [CXX] BackupStoreAccounts.cpp [CXX] BackupStoreCheck.cpp [CXX] BackupStoreCheck2.cpp [CXX] BackupStoreCheckData.cpp [CXX] BackupStoreConfigVerify.cpp [CXX] BackupStoreInfo.cpp [CXX] BackupStoreRefCountDatabase.cpp [CXX] StoreStructure.cpp [AR] ../../release/lib/backupstore/backupstore.a [RANLIB] ../../release/lib/backupstore/backupstore.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/backupstore' make[2]: Entering directory `/tmp/boxtest/trunk/bin/bbstoreaccounts' [CXX] bbstoreaccounts.cpp [LINK] ../../release/bin/bbstoreaccounts/bbstoreaccounts make[2]: Leaving directory `/tmp/boxtest/trunk/bin/bbstoreaccounts' make[2]: Entering directory `/tmp/boxtest/trunk/bin/bbstored' [CXX] BBStoreDHousekeeping.cpp [CXX] BackupCommands.cpp [CXX] BackupStoreContext.cpp [CXX] BackupStoreDaemon.cpp [CXX] HousekeepStoreAccount.cpp [CXX] autogen_BackupProtocolServer.cpp [CXX] bbstored.cpp [LINK] ../../release/bin/bbstored/bbstored make[2]: Leaving directory `/tmp/boxtest/trunk/bin/bbstored' [CXX] _main.cpp [CXX] testbackupstore.cpp [LINK] ../../release/test/backupstore/test cp _t ../../release/test/backupstore/t chmod u+x ../../release/test/backupstore/t cp _t-gdb ../../release/test/backupstore/t-gdb chmod u+x ../../release/test/backupstore/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/backupstore' TEST: test/backupstore Killing any running daemons... Removing old test files... Copying new test files... ERROR: Attempted to overwrite raidfile 0 test-info/info NOTICE: Running test backupstore in release mode... Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf Waiting for server to start: ...............ERROR: **** TEST FAILURE: Ser= ver=20 didn't save PID file at Test.cpp:291 ERROR: **** TEST FAILURE: Condition [pid !=3D -1 && pid !=3D 0] failed at= =20 testbackupstore.cpp:1793 timed out! =46AILED: 2 tests failed (first at Test.cpp:291) make[1]: Entering directory `/tmp/boxtest/trunk/test/backupstorefix' make[2]: Entering directory `/tmp/boxtest/trunk/bin/bbackupctl' [CXX] bbackupctl.cpp [LINK] ../../release/bin/bbackupctl/bbackupctl make[2]: Leaving directory `/tmp/boxtest/trunk/bin/bbackupctl' make[2]: Entering directory `/tmp/boxtest/trunk/bin/bbackupd' [CXX] BackupClientContext.cpp [CXX] BackupClientDeleteList.cpp [CXX] BackupClientDirectoryRecord.cpp [CXX] BackupClientInodeToIDMap.cpp [CXX] BackupDaemon.cpp [CXX] Win32BackupService.cpp [CXX] Win32ServiceFunctions.cpp [CXX] autogen_ClientException.cpp [CXX] bbackupd.cpp [LINK] ../../release/bin/bbackupd/bbackupd make[2]: Leaving directory `/tmp/boxtest/trunk/bin/bbackupd' make[2]: Entering directory `/tmp/boxtest/trunk/bin/bbackupquery' [CXX] BackupQueries.cpp [CXX] autogen_Documentation.cpp [CXX] bbackupquery.cpp [LINK] ../../release/bin/bbackupquery/bbackupquery make[2]: Leaving directory `/tmp/boxtest/trunk/bin/bbackupquery' [CXX] _main.cpp [CXX] testbackupstorefix.cpp [LINK] ../../release/test/backupstorefix/test cp _t ../../release/test/backupstorefix/t chmod u+x ../../release/test/backupstorefix/t cp _t-gdb ../../release/test/backupstorefix/t-gdb chmod u+x ../../release/test/backupstorefix/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/backupstorefix' TEST: test/backupstorefix Killing any running daemons... Removing old test files... Copying new test files... NOTICE: Account 0x01234567 created. ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was=20 already running?) at Test.cpp:138 ERROR: **** TEST FAILURE: Condition [pid !=3D -1 && pid !=3D 0] failed at= =20 testbackupstorefix.cpp:302 NOTICE: Running test backupstorefix in release mode... Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf Waiting for server to start: done. =46AILED: 2 tests failed (first at Test.cpp:138) make[1]: Entering directory `/tmp/boxtest/trunk/test/backupstorepatch' [CXX] _main.cpp [CXX] testbackupstorepatch.cpp [LINK] ../../release/test/backupstorepatch/test cp _t ../../release/test/backupstorepatch/t chmod u+x ../../release/test/backupstorepatch/t cp _t-gdb ../../release/test/backupstorepatch/t-gdb chmod u+x ../../release/test/backupstorepatch/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/backupstorepatch' TEST: test/backupstorepatch Removing old test files... Copying new test files... cp: Aufruf von stat f=C3=BCr =E2=80=9E../../../test/backupstorepatch/testfi= les=E2=80=9C nicht=20 m=C3=B6glich: Datei oder Verzeichnis nicht gefunden NOTICE: Account 0x01234567 created. ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was=20 already running?) at Test.cpp:138 ERROR: **** TEST FAILURE: Condition [pid !=3D -1 && pid !=3D 0] failed at= =20 testbackupstorepatch.cpp:327 NOTICE: Running test backupstorepatch in release mode... Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf Waiting for server to start: done. =46AILED: 2 tests failed (first at Test.cpp:138) make[1]: Entering directory `/tmp/boxtest/trunk/test/backupdiff' [CXX] _main.cpp [CXX] difftestfiles.cpp [CXX] testbackupdiff.cpp [LINK] ../../release/test/backupdiff/test cp _t ../../release/test/backupdiff/t chmod u+x ../../release/test/backupdiff/t cp _t-gdb ../../release/test/backupdiff/t-gdb chmod u+x ../../release/test/backupdiff/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/backupdiff' TEST: test/backupdiff Removing old test files... Copying new test files... cp: Aufruf von stat f=C3=BCr =E2=80=9E../../../test/backupdiff/testfiles=E2= =80=9C nicht m=C3=B6glich:=20 Datei oder Verzeichnis nicht gefunden NOTICE: Running test backupdiff in release mode... Time taken: 3 seconds PASSED make[1]: Entering directory `/tmp/boxtest/trunk/test/bbackupd' [CXX] _main.cpp [CXX] testbbackupd.cpp [LINK] ../../release/test/bbackupd/test cp _t ../../release/test/bbackupd/t chmod u+x ../../release/test/bbackupd/t cp _t-gdb ../../release/test/bbackupd/t-gdb chmod u+x ../../release/test/bbackupd/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/bbackupd' TEST: test/bbackupd Killing any running daemons... Removing old test files... Copying new test files... ERROR: Failed to stat file: 'doesn't exist': No such file or directory (2) ERROR: Failed to change times of file 'testfiles/test1_nXX': No such file= or=20 directory (2) NOTICE: Account 0x01234567 created. ERROR: **** TEST FAILURE: Server didn't save PID file (perhaps one was=20 already running?) at Test.cpp:138 ERROR: **** TEST FAILURE: Condition [bbstored_pid !=3D -1 && bbstored_pid= !=3D=20 0] failed at testbbackupd.cpp:443 ERROR: **** TEST FAILURE: Condition [r =3D=3D 0] failed at testbbackupd.c= pp:4054 NOTICE: Running test bbackupd in release mode... *********** Your platform supports xattr, but your filesystem does not. Skipping tests. *********** Starting server: ../../bin/bbstored/bbstored testfiles/bbstored.conf Waiting for server to start: done. =46AILED: 3 tests failed (first at Test.cpp:138) make[1]: Entering directory `/tmp/boxtest/trunk/test/httpserver' make[2]: Entering directory `/tmp/boxtest/trunk/lib/httpserver' [CXX] HTTPQueryDecoder.cpp [CXX] HTTPRequest.cpp [CXX] HTTPResponse.cpp [CXX] HTTPServer.cpp [CXX] S3Client.cpp [CXX] S3Simulator.cpp [CXX] autogen_HTTPException.cpp [CXX] cdecode.cpp [CXX] cencode.cpp [AR] ../../release/lib/httpserver/httpserver.a [RANLIB] ../../release/lib/httpserver/httpserver.a make[2]: Leaving directory `/tmp/boxtest/trunk/lib/httpserver' [CXX] _main.cpp [CXX] testhttpserver.cpp [LINK] ../../release/test/httpserver/test cp _t ../../release/test/httpserver/t chmod u+x ../../release/test/httpserver/t cp _t-gdb ../../release/test/httpserver/t-gdb chmod u+x ../../release/test/httpserver/t-gdb make[1]: Leaving directory `/tmp/boxtest/trunk/test/httpserver' TEST: test/httpserver Killing any running daemons... Removing old test files... Copying new test files... GET request... POST request... HEAD request... Redirected GET request... Cookie tests... ERROR: Failed to write to socket: Broken pipe (32) NOTICE: Running test httpserver in release mode... Starting server: ./test server testfiles/httpserver.conf Waiting for server to start: done. Waiting for server to die (pid 2842): . done. WARNING: Failed to open file: testfiles/nonexist: No such file or directory= =20 (2) WARNING: Exception thrown: CommonException(OSFileOpenError) at=20 =46ileStream.cpp(84) Starting server: ./test s3server testfiles/s3simulator.conf Waiting for server to start: . done. Waiting for server to die (pid 2853): . done. PASSED =2D------- common: PASSED crypto: PASSED compress: PASSED raidfile: PASSED basicserver: PASSED backupstore: FAILED: 2 tests failed (first at Test.cpp:291) backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) backupdiff: PASSED bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) httpserver: PASSED One or more tests have failed. Please check the following common causes: * Check that no instances of bbstored or bbackupd are already running on this machine. * Make sure there isn't a firewall blocking incoming or outgoing connections on port 2201. * Check that there is sufficient space in the filesystem that the tests are being run from (at least 1 GB free). * The backupdiff test fails if it takes too long, so it's sensitive to the speed of the host and your connection to it. After checking all the above, if you still have problems please contact us on the mailing list, boxbackup at boxbackup.org. Thanks! From boxbackup at boxbackup.org Sat Jul 11 11:26:55 2009 From: boxbackup at boxbackup.org (Dave Bamford) Date: Sat, 11 Jul 2009 11:26:55 +0100 Subject: [Box Backup] compile problems In-Reply-To: <200907081813.10695.ddmails@web.de> References: <200907081813.10695.ddmails@web.de> Message-ID: <4A5868EF.9000901@logical-progress.com> Hi Torsten Your results are very similar to mine. Here are the lines which contain the word fail in my test results I don't currently have the time to investigate, but box is working for me on this machine, and I have 4 other servers 3 of which run Debian 2 etch 1 lenny. The other runs Fedora FC6. All seem to work perfectly. All use Linux software RAID 1 with 2 drives. Regards Dave > backup6:/home/dave/trunk/trunk# more x.y | grep fail > ERROR: FileHandleGuard: failed to open file 'testfiles/DOESNTEXIST': > No such file or directory (2) > ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed > at testbackupstore.cpp:1793 > FAILED: 2 tests failed (first at Test.cpp:138) > ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed > at testbackupstorefix.cpp:302 > FAILED: 2 tests failed (first at Test.cpp:138) > ERROR: **** TEST FAILURE: Condition [pid != -1 && pid != 0] failed > at testbackupstorepatch.cpp:327 > FAILED: 2 tests failed (first at Test.cpp:138) > ERROR: **** TEST FAILURE: Condition [bbstored_pid != -1 && > bbstored_pid != 0] failed at testbbackupd.cpp:443 > ERROR: **** TEST FAILURE: Condition [r == 0] failed at > testbbackupd.cpp:4054 > FAILED: 3 tests failed (first at Test.cpp:138) > FAILED: 1 tests failed (first at testhttpserver.cpp:411) > backupstore: FAILED: 2 tests failed (first at Test.cpp:138) > backupstorefix: FAILED: 2 tests failed (first at Test.cpp:138) > backupstorepatch: FAILED: 2 tests failed (first at Test.cpp:138) > bbackupd: FAILED: 3 tests failed (first at Test.cpp:138) > httpserver: FAILED: 1 tests failed (first at testhttpserver.cpp:411) > One or more tests have failed. Please check the following common causes: > * The backupdiff test fails if it takes too long, so it's sensitive to From boxbackup at boxbackup.org Sun Jul 12 22:33:05 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Sun, 12 Jul 2009 22:33:05 +0100 (BST) Subject: [Box Backup] Multiple BoxBackup client on a PC In-Reply-To: <135B88EBD4D0412CB43699C22FC24B9E@PCFIJOADV1> References: <20090608110001.1327.94701.Mailman@fear.love.warhead.org.uk> <135B88EBD4D0412CB43699C22FC24B9E@PCFIJOADV1> Message-ID: Hi Andres, On Mon, 8 Jun 2009, Andres Fernandez Garcia wrote: > I have installed bb rc3.2502 client on a PC, this client install > is working good, but I need install a new client for another Redundancy > Server. When I try to install the Windows service on the second path, > say me that: "it already exist" the service. The second path is logical > diferent to the first. > > Some idea? Yes, it's complaining that a service with that name already exists in the Windows Services subsystem. You need to specify a name different from "Box Backup" using the -S option to bbackupd.exe when you run it with "-i" to install the service. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | From boxbackup at boxbackup.org Wed Jul 15 13:02:08 2009 From: boxbackup at boxbackup.org (Andres Fernandez Garcia) Date: Wed, 15 Jul 2009 14:02:08 +0200 Subject: [Box Backup] Imposible work with accounts.cgi References: <200907091621.35750.ddmails@web.de> <200907101254.13410.ddmails@web.de> Message-ID: <113BE5B2FB98934081B212B0EFCAFCDB611E52@SRVEXCHANGE.calconsa.com> I try install all perl module, but i can not run perl module.=20 If I try install perl -MCPAN -e 'force install P/PT/PTHOMSEN/BoxBackup/BBConfig-0.03.tar.gz' Always show me the next message: Illegal division by zero at -e line 1. Some idea? Thanks List! Rergards, andres. From boxbackup at boxbackup.org Fri Jul 17 14:11:30 2009 From: boxbackup at boxbackup.org (cheryl.gutierrez14@yahoo.com) Date: Fri, 17 Jul 2009 13:11:30 +0000 Subject: [Box Backup] (no subject) Message-ID: <20090717131133.F34C2325020@www.boxbackup.org> Link me in ---------- Sent via Cricket Mobile Email From boxbackup at boxbackup.org Wed Jul 22 15:34:33 2009 From: boxbackup at boxbackup.org (Torsten) Date: Wed, 22 Jul 2009 16:34:33 +0200 Subject: [Box Backup] Old vs Deleted files removal In-Reply-To: <7137d3f80902191753s4cc39560sb2e205d05f3ccbfa@mail.gmail.com> References: <7137d3f80902180445v1f0ee078mf7b4b011db5bb5ff@mail.gmail.com> <7137d3f80902191753s4cc39560sb2e205d05f3ccbfa@mail.gmail.com> Message-ID: <200907221634.35125.ddmails@web.de> Hi, because of my keep-files-28-days patch i tried to understand the logic of=20 Housekeeping and to solve the problem old vs deleted files. Here is my=20 result. Am Friday 20 February 2009 02:53:45 schrieb S=F8ren D=F8ssing: > On Thu, Feb 19, 2009 at 8:32 AM, Chris Wilson wrote: > > I think all the action happens in bin/bbstored/HousekeepStoreAccount.cp= p. > > It starts in HousekeepStoreAccount::DoHousekeeping(), but that doesn't = do > > much. The real action I suspect is in > > HousekeepStoreAccount::ScanDirectory() which is called on the root > > directory and calls itself recursively, building up a "map to count the > > distance from the mark" as it goes. That's where I get lost, I don't kn= ow > > what the "mark" is or what's done with this list yet. > > Chris, thanks for your explanation. I looked inside the source code to > see if I could find out what was going on. I think I got at least one > step further towards a reasonable solution. > > In HousekeepStoreAccount.h I find the following explanation of Mark: > > int32_t mVersionAgeWithinMark; // 0 =3D=3D current, 1 > latest old version, etc > > And in HousekeepStoreAccount.cpp I find the follow calculation of Mark: > > // Work out ages of this version from the last ma= rk > int32_t enVersionAge =3D 0; > std::map int32_t>, int32_t>::iterator > enVersionAgeI(markVersionAges.find(std::pair int32_t>(en->GetName(), en->GetMarkNumber()))); > if(enVersionAgeI !=3D markVersionAges.end()) > { > enVersionAge =3D enVersionAgeI->second + = 1; > enVersionAgeI->second =3D enVersionAge; > } > else > { > > markVersionAges[std::pair(en->GetName(), > en->GetMarkNumber())] =3D enVersionAge; > } > // enVersionAge is now the age of this version. > > The way I read it is; Assume Mark is 0. If other versions of same file > is found, sort them and set Mark to the sorted position. The files are not really sorted but only counted how many newer versions of= =20 this file exists. On every ScanDirectory we work only on files of this=20 directory. We are running in reverse Order (=3D=3D reverse order of object = IDs).=20 So we first take newest files until the oldest available file. We check every file if it is already in markVersionAges list. If it is not= =20 than we add it. If we find it, than this file is an older version of the fi= le=20 in the list, so we add 1 to enVersionAgeI->second. I can not find any code that influences this magic markNumber of a file. So= i=20 made an BOX_INFO to en->GetMarkNumber() and it is always 0. I have about a= =20 half million files in 3 backup accounts but on every housekeeping and every= =20 file this MarkVersion is always zero. So i think we can ignore this. I do n= ot=20 know what this is for. Does anybody know this? We write the calculated enVersionAge to the object DelEn here: d.mVersionAgeWithinMark =3D enVersionAge; Later we add this element to a sorted list: mPotentialDeletions.insert(d); That is the only magic here. Next step is DeleteFiles. This method runs on mPotentialDeletions until eno= ugh=20 files are deleted. The surprising thing here for me is, that files are not deleted at the orde= r=20 oldest first. The compare function for the sorted list mPotentialDeletions= =20 is "HousekeepStoreAccount::DelEnCompare::operator()". This does not compare= =20 timestamps but first it compares mVersionAgeWithinMark. Conclusion: ScanDirectory first deletes files with the highest count of old= =20 version, oldest first. So i never can guarantee that all changes of last we= ek=20 are still stored in the backup. If i change one file very often, so perhaps= =20 version from yesterday is deleted but older versions from another file is=20 still backed up.=20 And that is the problem of old vs deleted files. Soren found the problem.=20 Deleted files have no old version of a file so VersionAge keeps 0. That mea= ns=20 that deleted files are only removed, if old versions are removed and we are= =20 still not below softlimit. > I'm speculating that the problem here is that the latest version of a > deleted file is 0. This would be wrong; the latest backup version of a > deleted file is not current. It should be 1 to indicate that it's one > version different than what is on client disk, where the file is now > gone from. > > A simple change is to bump up the enVersionAge by 1 for deleted files > to make them comparable in revision to old files. > > *** HousekeepStoreAccount.cpp.orig 2008-01-29 09:58:25.000000000 +0900 > --- HousekeepStoreAccount.cpp 2009-02-20 09:54:55.000000000 +0900 > *************** bool HousekeepStoreAccount::ScanDirector > *** 392,397 **** > --- 392,398 ---- > markVersionAges[std::pair int32_t>(en->GetName(), en->GetMarkNumber())] =3D enVersionAge; > } > // enVersionAge is now the age of this version. > + if(enFlags & BackupStoreDirectory::Entry::Flags_Deleted) > ++enVersionAge; > > // Potentially add it to the list if it's deleted, if it's an old > version or deleted > if((enFlags & (BackupStoreDirectory::Entry::Flags_Deleted | > BackupStoreDirectory::Entry::Flags_OldVersion)) !=3D 0) > > This is just an idea for a quick fix. It's entirely untested, and > probably wrong if my assumptions are incorrect. For example, I'm not > sure if enVersionAge is really counting version numbers or holds age > of file in seconds. I'm also concerned that enVersionAge might be used > as index to an array, and incrementing it could go out of bounds for > the array. > > That said, is anybody able to test and confirm if this approach would > fix the problem? So Sorens assumtion is correct. If we increment enVersionAge of DeletedFile= s=20 than they are handled like old versions of files. But i think this is not t= he=20 best solution. I prefer to delete files depending on their timestamp, oldest first. This a= lso=20 would only be a little change. The object DelEn must store the timestamp of= =20 the file from en->GetModificationTime() and in=20 HousekeepStoreAccount::DelEnCompare::operator() we have to delete compariso= n=20 of mVersionAgeWithinMark and substutude with comparison of the timestamps. Ideas? thanks for reading Torsten From boxbackup at boxbackup.org Mon Jul 27 18:25:22 2009 From: boxbackup at boxbackup.org (Torsten) Date: Mon, 27 Jul 2009 19:25:22 +0200 Subject: [Box Backup] Old vs Deleted files removal Message-ID: <200907271925.25856.ddmails@web.de> Hi, sorry for the additional spam, but perhaps nobody can see my mail because o= f=20 threaded view. I would like to have comments ... Because of my keep-files-28-days patch i tried to understand the logic of=20 Housekeeping and to solve the problem old vs deleted files. Here is my=20 result. Am Friday 20 February 2009 02:53:45 schrieb S=C3=B8ren D=C3=B8ssing: > On Thu, Feb 19, 2009 at 8:32 AM, Chris Wilson wrote: > > I think all the action happens in bin/bbstored/HousekeepStoreAccount.cp= p. > > It starts in HousekeepStoreAccount::DoHousekeeping(), but that doesn't = do > > much. The real action I suspect is in > > HousekeepStoreAccount::ScanDirectory() which is called on the root > > directory and calls itself recursively, building up a "map to count the > > distance from the mark" as it goes. That's where I get lost, I don't kn= ow > > what the "mark" is or what's done with this list yet. > > Chris, thanks for your explanation. I looked inside the source code to > see if I could find out what was going on. I think I got at least one > step further towards a reasonable solution. > > In HousekeepStoreAccount.h I find the following explanation of Mark: > > int32_t mVersionAgeWithinMark; // 0 =3D=3D current, 1 > latest old version, etc > > And in HousekeepStoreAccount.cpp I find the follow calculation of Mark: > > // Work out ages of this version from the last ma= rk > int32_t enVersionAge =3D 0; > std::map int32_t>, int32_t>::iterator > enVersionAgeI(markVersionAges.find(std::pair int32_t>(en->GetName(), en->GetMarkNumber()))); > if(enVersionAgeI !=3D markVersionAges.end()) > { > enVersionAge =3D enVersionAgeI->second + = 1; > enVersionAgeI->second =3D enVersionAge; > } > else > { > > markVersionAges[std::pair(en->GetName(), > en->GetMarkNumber())] =3D enVersionAge; > } > // enVersionAge is now the age of this version. > > The way I read it is; Assume Mark is 0. If other versions of same file > is found, sort them and set Mark to the sorted position. The files are not really sorted but only counted how many newer versions of= =20 this file exists. On every ScanDirectory we work only on files of this=20 directory. We are running in reverse Order (=3D=3D reverse order of object = IDs).=20 So we first take newest files until the oldest available file. We check every file if it is already in markVersionAges list. If it is not= =20 than we add it. If we find it, than this file is an older version of the fi= le=20 in the list, so we add 1 to enVersionAgeI->second. I can not find any code that influences this magic markNumber of a file. So= i=20 made an BOX_INFO to en->GetMarkNumber() and it is always 0. I have about a= =20 half million files in 3 backup accounts but on every housekeeping and every= =20 file this MarkVersion is always zero. So i think we can ignore this. I do n= ot=20 know what this is for. Does anybody know this? We write the calculated enVersionAge to the object DelEn here: d.mVersionAgeWithinMark =3D enVersionAge; Later we add this element to a sorted list: mPotentialDeletions.insert(d); That is the only magic here. Next step is DeleteFiles. This method runs on mPotentialDeletions until eno= ugh=20 files are deleted. The surprising thing here for me is, that files are not deleted at the orde= r=20 oldest first. The compare function for the sorted list mPotentialDeletions= =20 is "HousekeepStoreAccount::DelEnCompare::operator()". This does not compare= =20 timestamps but first it compares mVersionAgeWithinMark. Conclusion: ScanDirectory first deletes files with the highest count of old= =20 version, oldest first. So i never can guarantee that all changes of last we= ek=20 are still stored in the backup. If i change one file very often, so perhaps= =20 version from yesterday is deleted but older versions from another file is=20 still backed up.=20 And that is the problem of old vs deleted files. Soren found the problem.=20 Deleted files have no old version of a file so VersionAge keeps 0. That mea= ns=20 that deleted files are only removed, if old versions are removed and we are= =20 still not below softlimit. > I'm speculating that the problem here is that the latest version of a > deleted file is 0. This would be wrong; the latest backup version of a > deleted file is not current. It should be 1 to indicate that it's one > version different than what is on client disk, where the file is now > gone from. > > A simple change is to bump up the enVersionAge by 1 for deleted files > to make them comparable in revision to old files. > > *** HousekeepStoreAccount.cpp.orig 2008-01-29 09:58:25.000000000 +0900 > --- HousekeepStoreAccount.cpp 2009-02-20 09:54:55.000000000 +0900 > *************** bool HousekeepStoreAccount::ScanDirector > *** 392,397 **** > --- 392,398 ---- > markVersionAges[std::pair int32_t>(en->GetName(), en->GetMarkNumber())] =3D enVersionAge; > } > // enVersionAge is now the age of this version. > + if(enFlags &=20 BackupStoreDirectory::Entry::Flags_Deleted) > ++enVersionAge; > > // Potentially add it to the list if it's deleted, = if=20 it's an old > version or deleted > if((enFlags &=20 (BackupStoreDirectory::Entry::Flags_Deleted | > BackupStoreDirectory::Entry::Flags_OldVersion)) !=3D 0) > > This is just an idea for a quick fix. It's entirely untested, and > probably wrong if my assumptions are incorrect. For example, I'm not > sure if enVersionAge is really counting version numbers or holds age > of file in seconds. I'm also concerned that enVersionAge might be used > as index to an array, and incrementing it could go out of bounds for > the array. > > That said, is anybody able to test and confirm if this approach would > fix the problem? So Sorens assumtion is correct. If we increment enVersionAge of DeletedFile= s=20 than they are handled like old versions of files. But i think this is not t= he=20 best solution. I prefer to delete files depending on their timestamp, oldest first. This a= lso=20 would only be a little change. The object DelEn must store the timestamp of= =20 the file from en->GetModificationTime() and in=20 HousekeepStoreAccount::DelEnCompare::operator() we have to delete compariso= n=20 of mVersionAgeWithinMark and substutude with comparison of the timestamps. Ideas? thanks for reading Torsten From boxbackup at boxbackup.org Wed Jul 29 17:25:22 2009 From: boxbackup at boxbackup.org (Achim) Date: Wed, 29 Jul 2009 18:25:22 +0200 Subject: [Box Backup] Bandwidth throttling Message-ID: <3f8039a861e1cf6996f17b8ca99753ea@localhost> Good afternoon: I was wondering how Box Backup users have implemented bandwidth throttling: do you do it on the client side or the server side? Since different clients will have different uplinks, a per-client configuration seems more sensible to me. As Ben stated in February 2005 on the topic: "It's on my list. However, I suggest dealing with it using pf style tools or on the firewall/router for now." [1]. Is there a known-good way to integrate with Box Backup, or is it perhaps possible to add something like rsync's "limit-rate" parameter to the client configurations? Thanks in advance, Achim PS: I found the following options for bandwith throttling: 1/ Trickle is a portable lightweight userspace bandwidth shaper. It can run in collaborative mode (together with trickled) or in stand alone mode. http://monkey.org/~marius/pages/?page=trickle 2/ Netbrake is an utility to limit the bandwidth used by a process. It does not require to modify the kernel, nor to be root in order to work. http://www.hping.org/netbrake/ 3/ OpenBSD's Class Based Queueing (CBQ) http://www.openbsd.org/faq/pf/queueing.html 4/ System-specific firewall settings [1] From boxbackup at boxbackup.org Wed Jul 29 16:34:02 2009 From: boxbackup at boxbackup.org (scartomail) Date: Wed, 29 Jul 2009 08:34:02 -0700 (PDT) Subject: [Box Backup] boxi for windows Message-ID: <896816.20434.qm@web65410.mail.ac4.yahoo.com> --0-2075978351-1248881642=:20434 Content-Type: text/plain; charset=us-ascii Hi, If been reading a lot lately on the Boxbakup site. It sounds like a perfect way to backup and I would like using it. Problem is that a lot of work has been done but the boxi windows gui has been left behind. It seems outdated, am I right? Is there still work done on the windows gui? The other code seems to develop nicely for windows clients. I have downlaoded the latest windows client and found a file "installer.iss". This is normaly used for automatic installation. I can not find a lot of documentation for it on the Boxbackup site. Anyone an idea how this should be used with Boxbackup? Rgds Edo --0-2075978351-1248881642=:20434 Content-Type: text/html; charset=us-ascii
Hi,
 
If been reading a lot lately on the Boxbakup site.
It sounds like a perfect way to backup and I would like using it.
 
Problem is that a lot of work has been done but the boxi windows gui has been left behind.
It seems outdated, am I right?
 
Is there still work done on the windows gui?
The other code seems to develop nicely for windows clients.
 
I have downlaoded the latest windows client and found a file "installer.iss".
This is normaly used for automatic installation.
I can not find a lot of documentation for it on the Boxbackup site.
Anyone an idea how this should be used with Boxbackup?
 
Rgds Edo
 
 
 
 

--0-2075978351-1248881642=:20434-- From boxbackup at boxbackup.org Thu Jul 30 00:08:59 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Thu, 30 Jul 2009 00:08:59 +0100 (BST) Subject: [Box Backup] boxi for windows In-Reply-To: <896816.20434.qm@web65410.mail.ac4.yahoo.com> References: <896816.20434.qm@web65410.mail.ac4.yahoo.com> Message-ID: Hi Edo, On Wed, 29 Jul 2009, scartomail wrote: > If been reading a lot lately on the Boxbakup site. It sounds like a > perfect way to backup and I would like using it. > > Problem is that a lot of work has been done but the boxi windows gui has > been left behind. It seems outdated, am I right? > > Is there still work done on the windows gui? The other code seems to > develop nicely for windows clients. It's not completely outdated. I have been doing work on it. However, I have been very short of time the last few years, and my main priority has been on fixing bugs and improving Box Backup, on which Boxi depends. It is possible to compile the latest Boxi from source and it is compatible with the latest Box Backup servers, but it's not well tested and has some known bugs. Nobody has stepped forward to help me to develop Boxi, which I think is a shame. > I have downlaoded the latest windows client and found a file > "installer.iss". This is normaly used for automatic installation. I can > not find a lot of documentation for it on the Boxbackup site. Anyone an > idea how this should be used with Boxbackup? I think it was developed for Box Backup 0.09 (not Boxi) and probably hasn't been used for years. There is also an NSIS installer which is much more recent and better supported, as it doesn't require proprietary tools to build. I think if you build the client on Windows, it should create an NSIS installer file which you can open in NSIS and use to create an executable installer. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | From boxbackup at boxbackup.org Thu Jul 30 00:37:31 2009 From: boxbackup at boxbackup.org (berni) Date: Thu, 30 Jul 2009 01:37:31 +0200 Subject: [Box Backup] boxi for windows In-Reply-To: References: <896816.20434.qm@web65410.mail.ac4.yahoo.com> Message-ID: <1248910651.4401.8.camel@berni-desktop> --=-PGOIJ5vV6ZrPlSa72vs1 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi i'm member of the satega homeserver team.=20 Because we have choosen boxbackup as our main backupsolution i'm going to develop a gui for windows/linux to enable easy administration and restore of files to our users. but i have to mention that i don't have yet started on the implementation, mainly because of heavy work in the homeserver itself. Also i don't know what programming language i'm going to use options are=20 * .NET * wxWidgets - python i hope i can reuse some code of boxi, but i fear i will mainly start from scratch.=20 Plan for our boxbackup client: * seamless integration with seasam * setup computer (create certificates, sign, etc) with one click * automatically backup the key files on the server=20 * enable restore aatdark On Thu, 2009-07-30 at 00:08 +0100, Chris Wilson wrote: > Nobody has stepped forward to help me to develop Boxi, which I think=20 > is a shame. --=-PGOIJ5vV6ZrPlSa72vs1 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkpw3TYACgkQ9wU+3S/MK7RXNACeJL+GxT+L1JG7xIu15zsb7Izq hT4AniKMAeuk/zd6i5VIV6+nCbP2uCc/ =2e5Z -----END PGP SIGNATURE----- --=-PGOIJ5vV6ZrPlSa72vs1-- From boxbackup at boxbackup.org Thu Jul 30 10:05:23 2009 From: boxbackup at boxbackup.org (scartomail) Date: Thu, 30 Jul 2009 02:05:23 -0700 (PDT) Subject: [Box Backup] boxi for windows In-Reply-To: References: <896816.20434.qm@web65410.mail.ac4.yahoo.com> Message-ID: <155844.93129.qm@web65407.mail.ac4.yahoo.com> --0-7755203-1248944723=:93129 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi Chris,=0A=0AThanks for the response.=0AI can't help you develop boxi as = my c++ knowlidge is terrible.=0AHowever I could try compiling the latest ve= rsion and test it.=0AThe first years of my IT carreer my job was to test so= ftware, later I was responsible for=A0backing up=A0large amounts of data on= =A0lots of servers.=0AIn that way I can help you improve the boxi backup cl= ient.=0A=0AIs this the latest version then?=0Ahttp://prdownloads.sourceforg= e.net/boxi/boxi-0.1.0.tar.gz=A0=A0=0A=0AThe documentation also talks about = the boxbackup deamon(on the client).=0AThis ofcourse is the way it is run o= n linux, on windows it should be a service.=0AI can not find anything on th= at in de documentation.=0ASo the only way to use it is to schedule it using= the scheduler in windows, is that correct?=0A=0ARgds Edo=0A=0A=0A=0A=0A=0A= ________________________________=0AFrom: Chris Wilson =0AT= o: boxbackup at boxbackup.org=0ASent: Thursday, July 30, 2009 1:08:59 AM=0ASub= ject: Re: [Box Backup] boxi for windows=0A=0AHi Edo,=0A=0AOn Wed, 29 Jul 20= 09, scartomail wrote:=0A=0A> If been reading a lot lately on the Boxbakup s= ite. It sounds like a perfect way to backup and I would like using it.=0A> = =0A> Problem is that a lot of work has been done but the boxi windows gui h= as been left behind. It seems outdated, am I right?=0A> =0A> Is there still= work done on the windows gui? The other code seems to develop nicely for w= indows clients.=0A=0AIt's not completely outdated. I have been doing work o= n it. However, I have been very short of time the last few years, and my ma= in priority has been on fixing bugs and improving Box Backup, on which Boxi= depends. It is possible to compile the latest Boxi from source and it is c= ompatible with the latest Box Backup servers, but it's not well tested and = has some known bugs. Nobody has stepped forward to help me to develop Boxi,= which I think is a shame.=0A=0A> I have downlaoded the latest windows clie= nt and found a file "installer.iss". This is normaly used for automatic ins= tallation. I can not find a lot of documentation for it on the Boxbackup si= te. Anyone an idea how this should be used with Boxbackup?=0A=0AI think it = was developed for Box Backup 0.09 (not Boxi) and probably hasn't been used = for years. There is also an NSIS installer which is much more recent and be= tter supported, as it doesn't require proprietary tools to build. I think i= f you build the client on Windows, it should create an NSIS installer file = which you can open in NSIS and use to create an executable installer.=0A=0A= Cheers, Chris.=0A-- _____ __=A0 =A0 _=0A\=A0 __/ / ,__(_)_=A0 | Chris Wilso= n <0000 at qwirx.com> - Cambs UK |=0A/ (_/ ,\/ _/ /_ \ | Security/C/C++/Jav= a/Ruby/Perl/SQL Developer |=0A\__/_/_/_//_/___/ | We are GNU : free your mi= nd & your software |=0A_______________________________________________=0Abo= xbackup mailing list=0Aboxbackup at boxbackup.org=0Ahttp://lists.warhead.org.u= k/mailman/listinfo/boxbackup=0A=0A=0A=0A --0-7755203-1248944723=:93129 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable
Hi Chris,
=0A
 
=0A
Thanks for = the response.
=0A
I can't help you develop boxi as my c++ knowlidg= e is terrible.
=0A
However I could try compiling the latest versio= n and test it.
=0A
The first years of my IT carreer my job was to = test software, later I was responsible for backing up large amoun= ts of data on lots of servers.
=0A
In that way I can help you= improve the boxi backup client.
=0A
 
=0A
Is this t= he latest version then?
=0A= =0A

The documentation also talks about the boxbackup deamon(on the = client).
=0A
This ofcourse is the way it is run on linux, on windo= ws it should be a service.
=0A
I can not find anything on that in = de documentation.
=0A
So the only way to use it is to schedule it = using the scheduler in windows, is that correct?
=0A
 
= =0A
Rgds Edo
=0A
 
=0A
 
=0A
=
=0A
=0A
=0AFrom: Chris Wilson <chris at qwirx.com>
To: boxbackup at boxbackup.orgSent: Thursday, July 30, = 2009 1:08:59 AM
Subject:= Re: [Box Backup] boxi for windows

Hi Edo,

On Wed, 29 = Jul 2009, scartomail wrote:

> If been reading a lot lately on the= Boxbakup site. It sounds like a perfect way to backup and I would like usi= ng it.
>
> Problem is that a lot of work has been done but the= boxi windows gui has been left behind. It seems outdated, am I right?
&= gt;
> Is there still work done on the windows gui? The other code se= ems to develop nicely for windows clients.

It's not completely outda= ted. I have been doing work on it. However, I have been very short of time = the last few years, and my main priority has been on fixing bugs and improving Box Backup, on which Boxi depends. It is possibl= e to compile the latest Boxi from source and it is compatible with the late= st Box Backup servers, but it's not well tested and has some known bugs. No= body has stepped forward to help me to develop Boxi, which I think is a sha= me.

> I have downlaoded the latest windows client and found a fil= e "installer.iss". This is normaly used for automatic installation. I can n= ot find a lot of documentation for it on the Boxbackup site. Anyone an idea= how this should be used with Boxbackup?

I think it was developed fo= r Box Backup 0.09 (not Boxi) and probably hasn't been used for years. There= is also an NSIS installer which is much more recent and better supported, = as it doesn't require proprietary tools to build. I think if you build the = client on Windows, it should create an NSIS installer file which you can op= en in NSIS and use to create an executable installer.

Cheers, Chris.
-- _____ __    _
\  __/ / ,__(_)_  | Chri= s Wilson <0000 at qwirx.co= m> - Cambs UK |
/ (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl= /SQL Developer |
\__/_/_/_//_/___/ | We are GNU : free your mind & y= our software |
_______________________________________________
boxbac= kup mailing list
boxbackup at boxbackup.org
http://lists.= warhead.org.uk/mailman/listinfo/boxbackup

=0A=0A= =0A=0A --0-7755203-1248944723=:93129-- From boxbackup at boxbackup.org Thu Jul 30 10:30:30 2009 From: boxbackup at boxbackup.org (scartomail) Date: Thu, 30 Jul 2009 02:30:30 -0700 (PDT) Subject: [Box Backup] boxi for windows In-Reply-To: <1248910651.4401.8.camel@berni-desktop> References: <896816.20434.qm@web65410.mail.ac4.yahoo.com> <1248910651.4401.8.camel@berni-desktop> Message-ID: <113455.24234.qm@web65416.mail.ac4.yahoo.com> --0-2022731104-1248946230=:24234 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi Berni,=0A=0AI checked out the site of the satega homeserver, great proje= ct.=0AChoosing boxbackup as your main backupsolution seems wise.=0AI have b= een checking about 50+ backup solutions for the last 2 months and also ende= d up with Boxbackup as the best way.=0AOnly the GUI part needs some work do= ne.=0A=0AYour plans for the GUI creation also look fine.=0AI would however = suggest using .NET for your language.=0AYou can use it in a webbrowser and = on linux and windows and......( you get the picture).=0AIt is a new languag= e and has been setup to get rid of all the old problems(like JIT version pr= oblems with Java).=0ACurrently I am studying for my MCSE-2008, once I am do= ne I will be going to upgrade my Csharp/.NET knowlidge.=0ADevelopment/debug= time is cut by 80% with .NET, it=A0is my prefered language.=0AI have alrea= dy done some programming is .NET and it speeds up my production in a major = way(that is not the case with other languages).=0AAnyway in=A0the future I = could be able to help=A0you if you choose .NET, and others to because a lar= ge community of .NET developers is out there.=0A=0ALet me know if you start= working on it, can't start helping right away but will be able to test it.= =0A=0ARgds Edo=0A=0A=0A=A0=0A=0A=0A=0A________________________________=0AFr= om: berni =0ATo: boxbackup at boxbackup.org=0ASent: Th= ursday, July 30, 2009 1:37:31 AM=0ASubject: Re: [Box Backup] boxi for windo= ws=0A=0AHi=0A=0Ai'm member of the satega homeserver team. =0ABecause we hav= e choosen boxbackup as our main backupsolution i'm going=0Ato develop a gui= for windows/linux to enable easy administration and=0Arestore of files to = our users.=0A=0Abut i have to mention that i don't have yet started on the= =0Aimplementation, mainly because of heavy work in the homeserver itself.= =0A=0AAlso i don't know what programming language i'm going to use=0Aoption= s are =0A* .NET=0A* wxWidgets - python=0A=0Ai hope i can reuse some code of= boxi, but i fear i will mainly start=0Afrom scratch. =0A=0APlan for our bo= xbackup client:=0A* seamless integration with seasam=0A* setup computer (cr= eate certificates, sign, etc) with one click=0A* automatically backup the k= ey files on the server =0A* enable restore=0A=0A=0Aaatdark=0AOn Thu, 2009-0= 7-30 at 00:08 +0100, Chris Wilson wrote:=0A> Nobody has stepped forward to = help me to develop Boxi, which I think =0A> is a shame.=0A=0A=0A=0A --0-2022731104-1248946230=:24234 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable
Hi Berni,
=0A
 
=0A
I checked o= ut the site of the satega homeserver, great project.
=0A
Choosing = boxbackup as your main backupsolution seems wise.
=0A
I have been = checking about 50+ backup solutions for the last 2 months and also ended up= with Boxbackup as the best way.
=0A
Only the GUI part needs some = work done.
=0A
 
=0A
Your plans for the GUI creation= also look fine.
=0A
I would however suggest using .NET for your l= anguage.
=0A
You can use it in a webbrowser and on linux and windo= ws and......( you get the picture).
=0A
It is a new language and h= as been setup to get rid of all the old problems(like JIT version problems = with Java).
=0A
Currently I am studying for my MCSE-2008, once I a= m done I will be going to upgrade my Csharp/.NET knowlidge.
=0A
De= velopment/debug time is cut by 80% with .NET, it is my prefered langua= ge.
=0A
I have already done some programming is .NET and it speeds= up my production in a major way(that is not the case with other languages)= .
=0A
Anyway in the future I could be able to help you i= f you choose .NET, and others to because a large community of .NET develope= rs is out there.
=0A
 
=0A
Let me know if you start = working on it, can't start helping right away but will be able to test it.<= /DIV>=0A
 
=0A
Rgds Edo
=0A
 
=0A
=
 
=0A

=0A
=0A
=0AFrom: berni <ber= nhardredl at gmail.com>
To:<= /B> boxbackup at boxbackup.org
Sent: Thursday, July 30, 2009 1:37:31 AM
Subject: Re: [Box Backup] boxi for windows
<= BR>Hi

i'm member of the satega homeserver team.
Because we have = choosen boxbackup as our main backupsolution i'm going
to develop a gui = for windows/linux to enable easy administration and
restore of files to = our users.

but i have to mention that i don't have yet started on th= e
implementation, mainly because of heavy work in the homeserver itself.=

Also i don't know what programming language i'm going to use
opt= ions are
* .NET
* wxWidgets - python

i hope i can reuse some = code of boxi, but i fear i will mainly start
from scratch.

Plan = for our boxbackup client:
* seamless integration with seasam
* setup compute= r (create certificates, sign, etc) with one click
* automatically backup= the key files on the server
* enable restore


aatdark
On = Thu, 2009-07-30 at 00:08 +0100, Chris Wilson wrote:
> Nobody has step= ped forward to help me to develop Boxi, which I think
> is a shame.<= BR>

=0A=0A=0A=0A --0-2022731104-1248946230=:24234-- From boxbackup at boxbackup.org Fri Jul 31 00:48:51 2009 From: boxbackup at boxbackup.org (Chris Wilson) Date: Fri, 31 Jul 2009 00:48:51 +0100 (BST) Subject: [Box Backup] boxi for windows In-Reply-To: <155844.93129.qm@web65407.mail.ac4.yahoo.com> References: <896816.20434.qm@web65410.mail.ac4.yahoo.com> <155844.93129.qm@web65407.mail.ac4.yahoo.com> Message-ID: This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323328-1910206351-1248997697=:18429 Content-Type: TEXT/PLAIN; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8BIT Content-ID: Hi Edo, On Thu, 30 Jul 2009, scartomail wrote: > Thanks for the response. > I can't help you develop boxi as my c++ knowlidge is terrible. > However I could try compiling the latest version and test it. Thanks, any testing would be very welcome. I know there is a problem with locations and exclusions containing international characters not being saved correctly in the configuration files. There are also automated tests built in to Boxi that you can run with "boxi -t", although not all of them pass and some are disabled by default in Subversion, so you'll need to edit main.cc to re-enable them. > The first years of my IT carreer my job was to test software, later I > was responsible for?backing up?large amounts of data on?lots of servers. > In that way I can help you improve the boxi backup client. ?Is this the > latest version then? > http://prdownloads.sourceforge.net/boxi/boxi-0.1.0.tar.gz?? That version is very old, please download the latest source code from Subversion. > The documentation also talks about the boxbackup deamon(on the client). > This ofcourse is the way it is run on linux, on windows it should be a > service. I can not find anything on that in de documentation. So the > only way to use it is to schedule it using the scheduler in windows, is > that correct? The intention is that Boxi will be used to create, maintain and test configuration files, run interactive backups, restores and compares, and manage the daemon or Windows service for unattended automated backups. The last part is currently not working. Some code was written for it a long time ago, but it is currently disabled and probably doesn't work. It's my intention to finish that code once the interactive features are working properly. Cheers, Chris. -- _____ __ _ \ __/ / ,__(_)_ | Chris Wilson <0000 at qwirx.com> - Cambs UK | / (_/ ,\/ _/ /_ \ | Security/C/C++/Java/Ruby/Perl/SQL Developer | \__/_/_/_//_/___/ | We are GNU : free your mind & your software | --8323328-1910206351-1248997697=:18429-- From boxbackup at boxbackup.org Fri Jul 31 14:36:04 2009 From: boxbackup at boxbackup.org (Achim) Date: Fri, 31 Jul 2009 15:36:04 +0200 Subject: [Box Backup] boxi for windows In-Reply-To: References: <896816.20434.qm@web65410.mail.ac4.yahoo.com> <155844.93129.qm@web65407.mail.ac4.yahoo.com> Message-ID: <4ea55211d2f3c0ea2d5898fa7652787e@localhost> Good day: On Fri, 31 Jul 2009 00:48:51 +0100 (BST), Chris Wilson wrote: > Thanks, any testing would be very welcome. I know there is a problem with > locations and exclusions containing international characters not being > saved correctly in the configuration files. Thanks for noting that. > There are also automated tests built in to Boxi that you can run with > "boxi -t", although not all of them pass and some are disabled by default > in Subversion, so you'll need to edit main.cc to re-enable them. Good to know. > That version is very old, please download the latest source code from > Subversion. I have some detailed documentation on how to compile Boxi and its requirements which I can post to the list. I thought I had done so in the thread "Compile Boxi from tarball or trunk?", but cannot find it at the moment. Perhaps they got integrated in Trac? > The intention is that Boxi will be used to create, maintain and test > configuration files, run interactive backups, restores and compares, and > manage the daemon or Windows service for unattended automated backups. The > last part is currently not working. Some code was written for it a long > time ago, but it is currently disabled and probably doesn't work. It's my > intention to finish that code once the interactive features are working > properly. Thanks for the additional information on where you see Boxi going. In the mean time, I was able to find 2 alternatives to Boxi that might be interesting: 1/ adelinbackup QT4 GUI for boxbackup Compiles for OS X 10.5.6, but still needs work. (Unstructured notes available) http://code.google.com/p/adelinbackup/ 2/ Box Backup Explorer A graphical web frontend for Box Backup (v0.10) written in Python. Never tried this one myself http://www.joonis.de/boxbackup-explorer I really think that a good GUI, particularly for restoring from backups is something that would be very valuable for Box Backup. Unfortunately, Boxi with its problems of international characters is not a choice for me at the moment. Adelin looks promising, with its modern cross-platform QT4 toolkit. It deserves more attention IMHO. Have a nice weekend, Achim