T.R | Title | User | Personal Name | Date | Lines |
---|
591.1 | Did they try some IO | VMSSPT::JENKINS | Kevin M Jenkins VMS Support Engineering | Wed May 14 1997 08:38 | 3 |
| May be a silly question, but after unplugging the drive did they attempt
any IO's... in particular try creating a file... The shadowing code
will only react to an IO that has failed.
|
591.2 | the system hangs on disk access | AEOENG::ANTHOINE_J | | Wed May 14 1997 10:55 | 7 |
| Hi Kevin,
Of course, after a disk is unplugged, the customer is trying to access
to the disk. The system hangs on this operation without any messages.
Jacques
|
591.3 | Wait MVTIMEOUT seconds | GIDDAY::GILLINGS | a crucible of informative mistakes | Wed May 14 1997 19:49 | 11 |
| Jacques,
If you remove a disk and issue an I/O, the system will first put the
disk into "Mount Verify" state. The process issuing the I/O will wait for
MVTIMEOUT seconds. If MVTIMEOUT expires, the device will be put into
"Mount Verify Timeout" state and the pending I/O will fail with a VOLINV
status. Subsequent I/Os will fail immediately.
Note that the default value for MVTIMEOUT is 3600 (1 hour).
John Gillings, Sydney CSC
|
591.4 | | UTRTSC::utojvdbu1.uto.dec.com::JurVanDerBurg | Change mode to Panic! | Thu May 15 1997 02:59 | 13 |
| For shadowing there's more than MVTIMEOUT.
First of all, when you issue a read request you don't know to which member it goes. It may
very well go to the member which is still alive, so you should do multiple i/o's to the
shadowset. If the i/o hits the member which is disconnected then SHADOW_MBR_TMO
starts to count (default depends on VMS version, nowadays 120 seconds). If the disk is
not back within this time the member will be thrown out of the shadowset.
So make sure that the diskconnected device is hit with an i/o request (and watch out
that the request is not satisfied from the VIOC).
Jur.
|
591.5 | Try doing a WRITE ... | STAR::ATOZ | John J. Andruszkiewicz | Thu May 15 1997 07:33 | 8 |
| One way to insure that both members are alive is to issue a write I/O
... so, I would create a TEST_WRITE.TXT file on both the system disk
and the data disk ... then pull one member of the data disk out, and
issue $APPEND SYS$SYSDEVICE:TEST_WRITE.TXT DATA_DISK:TEST_WRITE.TXT
... in SHADOW_MBR_TMO seconds, the member will be removed.
Regards,
John
|