Book Image

vSphere High Performance Cookbook - Second Edition - Second Edition

By : Kevin Elder, Christopher Kusek, Prasenjit Sarkar
Book Image

vSphere High Performance Cookbook - Second Edition - Second Edition

By: Kevin Elder, Christopher Kusek, Prasenjit Sarkar

Overview of this book

vSphere is a mission-critical piece of software for many businesses. It is a complex tool, and incorrect design and deployment can create performance related issues that can negatively affect the business. This book is focused on solving these problems as well as providing best practices and performance-enhancing techniques. This edition is fully updated to include all the new features in version 6.5 as well as the latest tools and techniques to keep vSphere performing at its best. This book starts with interesting recipes, such as the interaction of vSphere 6.5 components with physical layers such as CPU, memory, and networking. Then we focus on DRS, resource control design, and vSphere cluster design. Next, you’ll learn about storage performance design and how it works with VMware vSphere 6.5. Moving on, you will learn about the two types of vCenter installation and the benefits of each. Lastly, the book covers performance tools that help you get the most out of your vSphere installation. By the end of this book, you will be able to identify, diagnose, and troubleshoot operational faults and critical performance issues in vSphere 6.5.
Table of Contents (17 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Identifying when memory is the problem


Both your host memory and VM memory can indicate that they are under pressure. But the main challenge to a VMware admin is how to determine that there is a memory performance issue.

There are a few things that a VMware admin should understand to confirm whether there is a memory performance issue, and they are:

  • Your host memory consumption is approaching your total host memory
  • Active Memory in your host is approaching your total memory
  • Ballooning is occurring
  • Host swapping is occurring

Now if you wonder what is the Active Memory here in relation to Consumed Memory, let me tell you that Active Memory is the amount of memory that is actively used, as estimated by VMkernel, based on recently touched memory pages. For a VM, this is referred to the amount of guest physical memory that is actively used.

The ESXi host calculates Active Memory using the sum of all the active counters for all the powered-on VMs plus vSphere services on the host.

There could be another...