Windows 性能

本文档提供了一些性能优化,您可以将它们应用于您的 Windows 主机,以在使用 Ansible 与它们进行交互时以及一般情况下加速它们。

优化 PowerShell 性能以减少 Ansible 任务开销

要将 PowerShell 的启动速度提高约 10 倍,请在管理员会话中运行以下 PowerShell 代码段。预计它将花费数十秒。

注意

如果本机映像已由 ngen 任务或服务创建,您将不会观察到性能差异(但此代码段在此时将执行速度更快)。

function Optimize-Assemblies {
    param (
        [string]$assemblyFilter = "Microsoft.PowerShell.",
        [string]$activity = "Native Image Installation"
    )

    try {
        # Get the path to the ngen executable dynamically
        $ngenPath = [System.IO.Path]::Combine([Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory(), "ngen.exe")

        # Check if ngen.exe exists
        if (-Not (Test-Path $ngenPath)) {
            Write-Host "Ngen.exe not found at $ngenPath. Make sure .NET Framework is installed."
            return
        }

        # Get a list of loaded assemblies
        $assemblies = [AppDomain]::CurrentDomain.GetAssemblies()

        # Filter assemblies based on the provided filter
        $filteredAssemblies = $assemblies | Where-Object { $_.FullName -ilike "$assemblyFilter*" }

        if ($filteredAssemblies.Count -eq 0) {
            Write-Host "No matching assemblies found for optimization."
            return
        }

        foreach ($assembly in $filteredAssemblies) {
            # Get the name of the assembly
            $name = [System.IO.Path]::GetFileName($assembly.Location)

            # Display progress
            Write-Progress -Activity $activity -Status "Optimizing $name"

            # Use Ngen to install the assembly
            Start-Process -FilePath $ngenPath -ArgumentList "install `"$($assembly.Location)`"" -Wait -WindowStyle Hidden
        }

        Write-Host "Optimization complete."
    } catch {
        Write-Host "An error occurred: $_"
    }
}

# Optimize PowerShell assemblies:
Optimize-Assemblies -assemblyFilter "Microsoft.PowerShell."

PowerShell 由每个 Windows Ansible 模块使用。此优化减少了 PowerShell 启动所需的时间,消除了每次调用中的开销。

此代码段使用 本机映像生成器 ngen 来预先创建 PowerShell 所依赖的程序集的本机映像。

解决虚拟机/云实例启动时 CPU 占用率高的问题

如果您正在创建用于生成实例的黄金映像,则可以通过 在黄金映像创建过程中处理 ngen 队列 来避免在启动时出现破坏性的高 CPU 任务,前提是您知道 CPU 类型在黄金映像构建过程和运行时之间不会改变。

将以下代码段放在剧本的末尾,请牢记可能导致本机映像失效的因素(参见 MSDN)。

- name: generate native .NET images for CPU
  win_dotnet_ngen: