Linux 下配置 HugePages
HugePages是透過使用大頁記憶體來取代傳統的4kb記憶體頁面,使得管理虛擬地址數變少,加快了從虛擬地址到實體地址的對映以及透過摒棄記憶體頁面的換入換出以提高記憶體的整體效能。尤其是對於8GB以上的記憶體以及較大的Oracle SGA size,建議配值並使用HugePage特性。本文基於x86_64 Linux下來描述如何配值 HugePages。
有關HugePages的特性請參考:Linux HugePage 特性
1、為什麼需要配值HugePages ?
a、Larger Page Size and Less # of Pages:
Default page size is 4K whereas the HugeTLB size is 2048K. That means the system would need to handle 512 times less pages.
b、No Page Table Lookups:
Since the HugePages are not subject to replacement (despite regular pages), page table lookups are not required.
c、Better Overall Memory Performance:
On virtual memory systems (any modern OS) each memory operation is actually two abstract memory operations. With HugePages, since there are less number of pages to work on, the possible bottleneck on page table access is clearly avoided.
d、No Swapping:
We must avoid swapping to happen on Linux OS at all Document 1295478.1. HugePages are not swappable (whereas regular pages are). Therefore there is no page replacement mechanism overhead. HugePages are universally regarded as pinned.
e、No 'kswapd' Operations:
kswapd will get very busy if there is a very large area to be paged (i.e. 13 million page table entries for 50GB memory) and will use an incredible amount of CPU resource. When HugePages are used, kswapd is not involved in managing them. See also Document 361670.1
2、配值HugePages
下面列出了配值HugePages的所有步驟
a、檢視當前系統是否配值HugePages
下面的查詢中HugePages相關的幾個值都為0,表明當前未配值HugePages,其次可以看到Hugepagesize為2MB。
$ grep Huge /proc/meminfo
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
Hugepagesize: 2048 kB
b、修改使用者的memlock限制
透過修改/etc/security/limits.conf 配值檔案來實現
該引數的值通常配值位略小於當前的已安裝系統記憶體,如當前你的系統記憶體為64GB,可以做如下設定
* soft memlock 60397977
* hard memlock 60397977
上述的設定單位為kb,不會降低系統效能。至少也要配值為略大於系統上所有SGA的總和。
使用ulimit -l 來校驗該設定
c、禁用AMM(Oracle 11g)
如果當前的Oracle 版本為10g,可以跳過此步驟。
如果當前的Oracle 版本為11g,由於AMM(Automatic Memory Management)特性與Hugepages不相容,需要禁用AMM。
ALTER SYSTEM RESET memory_target SCOPE=SPFILE;
ALTER SYSTEM RESET memory_max_target SCOPE=SPFILE;
ALTER SYSTEM SET sga_target=
ALTER SYSTEM SET pga_aggregate_target=
SHUTDOWN IMMEDIATE;
STARTUP;
d、計算vm.nr_hugepages 的值
使用Oracle 提供的指令碼hugepages_settings.sh的指令碼來計算vm.nr_hugepages的值
在執行指令碼之前確保所有的Oracle 例項已啟動以及ASM也啟動(存在的情形下)
$ ./hugepages_settings.sh
...
Recommended setting: vm.nr_hugepages = 1496
e、 編輯/etc/sysctl.conf 來設定vm.nr_hugepages引數
$ sysctl -w vm.nr_hugepages = 1496
$ sysctl -p
-- Author : Robinson
-- Blog : http://blog.csdn.net/robinson_0612
f、停止所有的Instance並重啟server
上述的所有步驟已經實現了動態修改,但對於HugePages的分配需要重新啟動server才能生效。
h、驗證配值
HugePages相關引數的值會隨著當前伺服器上的例項的停止與啟動而動態發生變化
通常情況下,HugePages_Free的值應當小於HugePages_Total的值,在HugePages被使用時HugePages_Rsvd值應當為非零值。
$ grep Huge /proc/meminfo
HugePages_Total: 131
HugePages_Free: 20
HugePages_Rsvd: 20
Hugepagesize: 2048 kB
如下面的情形,當伺服器上僅有的一個例項被關閉後,HugePages_Rsvd的值為零。且HugePages_Free等於HugePages_Total
$ grep Huge /proc/meminfo
HugePages_Total: 131
HugePages_Free: 131
HugePages_Rsvd: 0
Hugepagesize: 2048 kB
3、使用HugePages的注意事項
下面的三種情形應當重新配置HugePages
a、實體記憶體的增減或減少
b、在當前伺服器上新增或移出Instance
c、Instance的SGA大小增加或減少
如果未能調整HugePages,可能會引發下面的問題
a、資料庫效能地下
b、出現記憶體不足或者過度使用交換空間
c、資料庫例項不能被啟動
d、關鍵性系統服務故障
4、HugePages特性的常見故障處理
Symptom A:
System is running out of memory or swapping
Possible Cause:
Not enough HugePages to cover the SGA(s) and therefore the area reserved for HugePages are wasted where SGAs are allocated through regular pages.
Troubleshooting Action:
Review your HugePages configuration to make sure that all SGA(s) are covered.
Symptom B:
Databases fail to start
Possible Cause:
memlock limits are not set properly
Troubleshooting Action:
Make sure the settings in limits.conf apply to database owner account.
Symptom C:
One of the database fail to start while another is up
Possible Cause:
The SGA of the specific database could not find available HugePages and remaining RAM is not enough.
Troubleshooting Action:
Make sure that the RAM and HugePages are enough to cover all your database SGAs
Symptom D:
Cluster Ready Services (CRS) fail to start
Possible Cause:
HugePages configured too large (maybe larger than installed RAM)
Troubleshooting Action:
Make sure the total SGA is less than the installed RAM and re-calculate HugePages.
Symptom E:
HugePages_Total = HugePages_Free
Possible Cause:
HugePages are not used at all. No database instances are up or using AMM.
Troubleshooting Action:
Disable AMM and make sure that the database instances are up.
Symptom F:
Database started successfully and the performance is slow
Possible Cause:
The SGA of the specific database could not find available HugePages and therefore the SGA is handled by regular pages, which leads to slow performance
Troubleshooting Action:
Make sure that the HugePages are many enough to cover all your database SGAs
Reference: [ID 361468.1]
5、計算vm.nr_hugepages 值的指令碼
- #!/bin/bash
- #
- # hugepages_settings.sh
- #
- # Linux bash script to compute values for the
- # recommended HugePages/HugeTLB configuration
- #
- # Note: This script does calculation for all shared memory
- # segments available when the script is run, no matter it
- # is an Oracle RDBMS shared memory segment or not.
- #
- # This script is provided by Doc ID 401749.1 from My Oracle Support
- #
- # Welcome text
- echo "
- This script is provided by Doc ID 401749.1 from My Oracle Support
- () where it is intended to compute values for
- the recommended HugePages/HugeTLB configuration for the current shared
- memory segments. Before proceeding with the execution please note following:
- * For ASM instance, it needs to configure ASMM instead of AMM.
- * The 'pga_aggregate_target' is outside the SGA and
- you should accommodate this while calculating SGA size.
- * In case you changes the DB SGA size,
- as the new SGA will not fit in the previous HugePages configuration,
- it had better disable the whole HugePages,
- start the DB with new SGA size and run the script again.
- And make sure that:
- * Oracle Database instance(s) are up and running
- * Oracle Database 11g Automatic Memory Management (AMM) is not setup
- (See Doc ID 749851.1)
- * The shared memory segments can be listed by command:
- # ipcs -m
- Press Enter to proceed..."
- read
- # Check for the kernel version
- KERN=`uname -r | awk -F. '{ printf("%d.%d\n",$1,$2); }'`
- # Find out the HugePage size
- HPG_SZ=`grep Hugepagesize /proc/meminfo | awk '{print $2}'`
- if [ -z "$HPG_SZ" ];then
- echo "The hugepages may not be supported in the system where the script is being executed."
- exit 1
- fi
- # Initialize the counter
- NUM_PG=0
- # Cumulative number of pages required to handle the running shared memory segments
- for SEG_BYTES in `ipcs -m | cut -c44-300 | awk '{print $1}' | grep "[0-9][0-9]*"`
- do
- MIN_PG=`echo "$SEG_BYTES/($HPG_SZ*1024)" | bc -q`
- if [ $MIN_PG -gt 0 ]; then
- NUM_PG=`echo "$NUM_PG+$MIN_PG+1" | bc -q`
- fi
- done
- RES_BYTES=`echo "$NUM_PG * $HPG_SZ * 1024" | bc -q`
- # An SGA less than 100MB does not make sense
- # Bail out if that is the case
- if [ $RES_BYTES -lt 100000000 ]; then
- echo "***********"
- echo "** ERROR **"
- echo "***********"
- echo "Sorry! There are not enough total of shared memory segments allocated for
- HugePages configuration. HugePages can only be used for shared memory segments
- that you can list by command:
- # ipcs -m
- of a size that can match an Oracle Database SGA. Please make sure that:
- * Oracle Database instance is up and running
- * Oracle Database 11g Automatic Memory Management (AMM) is not configured"
- exit 1
- fi
- # Finish with results
- case $KERN in
- '2.4') HUGETLB_POOL=`echo "$NUM_PG*$HPG_SZ/1024" | bc -q`;
- echo "Recommended setting: vm.hugetlb_pool = $HUGETLB_POOL" ;;
- '2.6') echo "Recommended setting: vm.nr_hugepages = $NUM_PG" ;;
- *) echo "Unrecognized kernel version $KERN. Exiting." ;;
- esac
- # End
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23490154/viewspace-1062425/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- HugePages on LinuxLinux
- 【TUNE_ORACLE】Oracle資料庫與HugePages(二)HugePages配置和限制Oracle資料庫
- linux下配置javaLinuxJava
- How to disable transparent hugepages (THP) on Red Hat Enterprise Linux 7Linux
- Linux下iptables安全配置Linux
- linux下tomcat安全配置LinuxTomcat
- 在 Linux 下配置 RAIDLinuxAI
- HugePages詳解
- linux下配置java環境LinuxJava
- Linux下ODBC安裝配置Linux
- Linux 下配置 node + mongodb 環境LinuxMongoDB
- Linux CentOS 7 下 Redis 的配置LinuxCentOSRedis
- Linux下rsync安裝與配置Linux
- Linux下檢視、新增及配置Linux
- 6、nginx+linux下jdk配置NginxLinuxJDK
- linux下配置好的快捷鍵Linux
- Linux系統下網路配置Linux
- linux環境下ssh 互信配置Linux
- Linux 下網路介面卡配置Linux
- JB的測試之旅-Linux下配置Linux
- linux下安裝node npm並配置LinuxNPM
- Linux環境下nginx安裝配置LinuxNginx
- Linux下pppd撥號指令碼配置Linux指令碼
- MySQL - 下載與安裝配置(Linux)MySqlLinux
- [20191211]hugepages pagetables.txt
- 【TUNE_ORACLE】Oracle資料庫與HugePages(一)HugePages概念和優勢Oracle資料庫
- Linux下使用Nginx做CDN伺服器下的配置LinuxNginx伺服器
- Linux下Java環境變數的配置LinuxJava變數
- Django專案在Linux下基礎配置DjangoLinux
- Linux系統下安裝配置 OpenLDAP + phpLDAPadminLinuxLDAPHP
- DM8 Linux環境下配置ODBCLinux
- 在Linux下安裝配置Cntlm代理教程Linux
- 分享Linux下的sudo及其配置檔案/etc/sudoers詳細配置Linux
- Linux下安裝java及配置(yum安裝)LinuxJava
- UltraEdit下ftp配置,UE遠端連線linuxFTPLinux
- Deepin(Linux系統)下的selenium+chrome配置LinuxChrome
- Linux(CentOS 7)VMWare下配置遠端登入LinuxCentOS
- Linux系統下CUDA和cuDNN環境配置LinuxDNN
- linux下Apache+PHP+MySQL安裝配置攻略LinuxApachePHPMySql