vCenter Database Optimization Thoughts...

For the past few weeks I have been working on an issue with a vCenter 4.1 database to work properly and to complete stat roll-ups without error. Here are some of the tricks and things that I have found to help identify the problem and possibly fix it for some.

  1. Check the HIST_STAT tables for fragmented indexes and possible performance issues (execute the following in the SQL Management Studio targeting your vCenter database):

    dbcc showcontig (VPX_HIST_STAT1)
    dbcc showcontig (VPX_HIST_STAT2)
    dbcc showcontig (VPX_HIST_STAT3)
    dbcc showcontig (VPX_HIST_STAT4)
    go

    The results will look like this:

    DBCC SHOWCONTIG scanning ‘VPX_HIST_STAT1’ table…
    Table: ‘VPX_HIST_STAT1’ (882102183); index ID: 1, database ID: 7
    TABLE level scan performed.
    - Pages Scanned…………………………..: 534985
    - Extents Scanned…………………………: 67439
    - Extent Switches…………………………: 311950
    - Avg. Pages per Extent……………………: 7.9
    - Scan Density [Best Count:Actual Count]…….: 21.44% [66874:311951]
    - Logical Scan Fragmentation ………………: 53.34%
    - Extent Scan Fragmentation ……………….: 11.30%
    - Avg. Bytes Free per Page…………………: 3433.6
    - Avg. Page Density (full)…………………: 57.58%

    The two critical lines are the Scan Density and the Logical Scan Fragmentation (from MSDN):

    Scan Density

    [Best Count: Actual Count] Best count is the ideal number of extent changes if everything is contiguously linked. Actual count is the actual number of extent changes. The number in scan density is 100 if everything is contiguous; if it is less than 100, some fragmentation exists. Scan density is a percentage.

    Logical Scan Fragmentation Percentage of out-of-order pages returned from scanning the leaf pages of an index. This number is not relevant to heaps and text indexes. An out of order page is one for which the next page indicated in an IAM is a different page than the page pointed to by the next page pointer in the leaf page.

    If the Scan density is below 50% and/or if the logical scan fragmentation is above 50% then you should complete step 2 to help optimize those tables. (Scan Density will quickly drift in a vCenter installation with more than 50 hosts or 500 VMs)

  2. If your table indexes are approaching below 50% Scan Density or above 50% Logical Scan Fragmentation, do the following in the SQL Management Studio:

    dbcc dbreindex( ‘vpx_hist_stat1’,‘pk_vpx_hist_stat1’, 70)
    dbcc dbreindex( ‘vpx_hist_stat2’,‘pk_vpx_hist_stat2’, 70)
    dbcc dbreindex( ‘vpx_hist_stat3’,‘pk_vpx_hist_stat3’, 70)
    dbcc dbreindex( ‘vpx_hist_stat4’,‘pk_vpx_hist_stat4’, 70)

    The above commands will re-index each of the primary indexes on the table. This process may take a few minutes depending on the load on the SQL server, this does lock the index on the table while completing, so do it during a slow time.

  3. Determining table sizes:In the SQL Management Studio you can execute the following to show exactly what tables are growing larger and possibly causing problems with performance.

    If your vCenter has been around for a while or just has a lot of use the VPX_EVENT or VPX_EVENT_ARG tables will be large (millions of rows), you can reduce the size of these by setting the ‘Database Retention Policy’ in vCenter to around 180 days or what your organization feels is needed for accurate logging.

    The tables vpx_hist_stat1, and vpx_hist_stat2 will contain many, many, many rows; this is where vCenter stores the performance metrics for daily and weekly stats (3 is for monthly and 4 is yearly). If your retention for the daily is above 1 day or your detail setting is set high (3 or higher), you will have more rows than others. These tables operate fine until they reach ~100 million rows (although performance issues can start around 50 million, depending on the SQL server hardware).

    If your vpx_hist_stat1 table is approaching 100 million rows or possibly even higher, chances are good that the rollup procedure will start to fail soon, you can reduce this size by reducing the amount of data that is logged. To do this fire up vCenter and set the statistics logging for ‘Day’ to 3 or lower and retention for 1 day. Then give vCenter a day or two and check again, the table will have shrunk.

    If the stats rollup job is already failing with ‘unable to lock row’ or other errors you may need to correct the jobs that were installed with vCenter, follow these steps to complete that: VMware KB100905

    If you are still having issues after completing those steps you can then truncate the tables and get back to a fresh hist_stat table. To complete this follow these steps: VMware KB1007453 (To avoid losing all the performance stats that have been gathered, just truncate the hist_stat1 table).


Modify vSphere Path Selection Policy in Bulk
New Job...