Book Image

VMware Horizon View High Availability

By : Andrew Alloway
Book Image

VMware Horizon View High Availability

By: Andrew Alloway

Overview of this book

Table of Contents (16 chapters)
VMware Horizon View High Availability
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

VMFS and Fibre Channel workflow


It is a shared file system that multiple ESXi hosts can read and write to, simultaneously. VMFS is used to store all aspects of the VM including but not limited to: VMDK disks, snapshots, configuration data and swap data.

When a VM wants to read or write to a disk located on the SAN, the following must take place:

  1. The guest operating system issues a read or write command to the virtual disk attached to the VM.

  2. A SCSI command is issued to the SCSI driver for the virtual disk and then the virtual SCSI controller processes the command.

  3. The virtual SCSI controller forwards the command to the VMkernel.

  4. The VMkernel does the following:

    • Locates the VMDK file on the VMFS volume that the VM is attempting to read or write to

    • Maps the SCSI command to the block on the virtual disk

    • Maps the block on the physical disk to the block that corresponds to on the virtual disk

    • Builds and sends a SCSI command with the true physical block location on the VMFS datastore

  5. The HBA installed on...