web-dev-qa-db-ja.com

CPU管理の無効化

次のprocessor.max_cstate=0をカーネルコマンドラインに追加して起動すると、すべてのCPU電源管理とスロットリングが無効になりますか?

私も見つけました: http://www.experts-exchange.com/OS/Linux/Administration/A_3492-Avoiding-CPU-speed-scaling-in-modern-Linux-distributions-Running-CPU-at-フルスピード-Tips.html

リンクは、すべてのCPU /コアのCPUガバナーを「オンデマンド」から「パフォーマンス」に変更し、カーネルからのkondemandを無効にすることについて説明しています。

サーバーはウェブホスティング用です

更新:

2.6.32-379.1.1.lve1.1.7.6.el6.x86_64 #1 SMP Sat Aug 4 09:56:37 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux

    # dmidecode 2.11
    SMBIOS 2.6 present.
    74 structures occupying 2878 bytes.
    Table at 0x0009F000.

    Handle 0x0000, DMI type 0, 24 bytes
    BIOS Information
            Vendor: American Megatrends Inc.
            Version: 1.0c
            Release Date: 05/27/2010
            Address: 0xF0000
            Runtime Size: 64 kB
            ROM Size: 4096 kB
            Characteristics:
                    ISA is supported
                    PCI is supported
                    PNP is supported
                    BIOS is upgradeable
                    BIOS shadowing is allowed
                    ESCD support is available
                    Boot from CD is supported
                    Selectable boot is supported
                    BIOS ROM is socketed
                    EDD is supported
                    5.25"/1.2 MB floppy services are supported (int 13h)
                    3.5"/720 kB floppy services are supported (int 13h)
                    3.5"/2.88 MB floppy services are supported (int 13h)
                    Print screen service is supported (int 5h)
                    8042 keyboard services are supported (int 9h)
                    Serial services are supported (int 14h)
                    Printer services are supported (int 17h)
                    CGA/mono video services are supported (int 10h)
                    ACPI is supported
                    USB legacy is supported
                    LS-120 boot is supported
                    ATAPI Zip drive boot is supported
                    BIOS boot specification is supported
                    Targeted content distribution is supported
            BIOS Revision: 8.16

    Handle 0x0001, DMI type 1, 27 bytes
    System Information
            Manufacturer: Supermicro
            Product Name: X8SIE
            Version: 0123456789
            Serial Number: 0123456789
            UUID: 49434D53-0200-9033-2500-33902500D52C
            Wake-up Type: Power Switch
            SKU Number: To Be Filled By O.E.M.
            Family: To Be Filled By O.E.M.
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
        Manufacturer: Supermicro
        Product Name: X8SIE
        Version: 0123456789
        Serial Number: VM11S61561
        Asset Tag: To Be Filled By O.E.M.
        Features:
                Board is a hosting board
                Board is replaceable
        Location In Chassis: To Be Filled By O.E.M.
        Chassis Handle: 0x0003
        Type: Motherboard
        Contained Object Handles: 0

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
        Manufacturer: Supermicro
        Type: Sealed-case PC
        Lock: Not Present
        Version: 0123456789
        Serial Number: 0123456789
        Asset Tag: To Be Filled By O.E.M.
        Boot-up State: Safe
        Power Supply State: Safe
        Thermal State: Safe
        Security Status: None
        OEM Information: 0x00000000
        Height: Unspecified
        Number Of Power Cords: 1
        Contained Elements: 0
3
Tiffany Walker

これは、ハードウェア設定の機能になります。
サーバーのメーカー/モデルとLinuxディストリビューション/バージョンおよびカーネルを提供してください。

サーバーのパフォーマンスを最大化するプロセスは、利用できるものによって大きく異なります...

例えば:

  • Red Hat 6システムには、CPUガバナーを無効にするtuned-admフレームワークがあります。 ( この図も参照してください。
  • HP ProLiantサーバー(およびその他)には、 特定のチューニングガイド と、低遅延でパフォーマンスが最適化されたセットアップの手順があります。
  • ほとんどのハードウェアベンダーには、役立つ特定のBIOS設定があります(C状態とP状態を無効にする-周波数スケーリングも無効にする)。

だから、あなたが探しているものについてより多くのコンテキストを提供してください。

RHELアプローチに関する一般的な情報については、マトリックス この回答にリストされています を確認してください。

編集:カーネル文字列から、これはRedHatのようなRPMベースのシステムのように見えます。

Tuned-admユーティリティをダウンロードし、システムのパフォーマンスプロファイルを変更して、目的を達成することをお勧めします。

あなたの場合:

yum install tuned tuned-utils
tuned-adm profile latency-performance

または多分:

tuned-adm profile enterprise storage

どちらもCPUガバナーを無効にします。

システム設定とプロファイルは、以下のスケジュールに従って配置されます。

3
ewwhite