Set large page--hugepage for Oracle database under Linux

Source: Internet
Author: User

Configuring Hugepage in Linux can improve Oracle's performance and reduce page swapping for Oracle SGA, similar to Lagepage in Aix.

Why use large pages?

The default block size for Linux memory is 4K
If the SGA is: 128G
Select 128*1024*1024/4 from dual;33554432 (more than 30 million),
Select 128*1024/2 from dual; 65,536 x
Each memory page has a page table entry (about 10 bytes) that records the page's status, location
The default block size is 4K--page Table size: 320M.
The page table is only occupied when the large page is under 2M. 625M

In Linux, each process page table is independent and has its own page table.
If there are 1000 processes: 1000*320m is approximately 320G.
While 1000 processes use a large page: 1000*0.625=625m

A large page was set up but not used by Oracle for only two reasons:

(1), sga_max_size more than a large page
(2), no memory lock set
Memory: Is the stage where the process is active, and the Oracle database automatically searches for large pages when it is startup.
If so, allocate the SGA in a large page.
If not, the default chunk size is used to start normally.

#############

To set a large page step:

1. Check your system's current large page usage:
[~]$ cat Http://www.qixoo.qixoo.com/proc/meminfo |grep Huge
hugepages_total:0
hugepages_free:0
hugepages_rsvd:0
hugepages_surp:0
hugepagesize:2048 KB--Large page size is 2M
[email protected] bys3>show parameter Sga_max--view database SGA Size--My lab machine
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
Sga_max_size Big Integer 216M

2. Set the number of large pages
--Here are 200 *2M=400M,SGA max 216M, large pages of memory larger than the SGA size to be used by Oracle, so I set 200.

Vi/etc/sysctl.conf
Add a line inside:
vm.nr_hugepages=200
After saving, execute:
Sysctl-p
View:--if hugepages_free: Less than 200, perform several more sysctl-p
[~]# cat Http://qkxue.net/proc/meminfo |grep Huge
hugepages_total:200
hugepages_free:200
hugepages_rsvd:0
hugepages_surp:0
hugepagesize:2048 KB

3. Also need to set the memory Lock:--The number of memlock is larger than the number of large pages--set to 1, no limit.
Vi/etc/security/limits.conf
Oracle Soft Memlock-1
Oracle Hard Memlock-1
[~]# ulimit-l
3500000-----This number is limited to the number of large pages, sufficient.

4. Restart the database, the large page has been used by Oracle.
[Email protected] bys3>shutdown immediate;
[Email protected] Bys3>startup

Execute continuously during restart of the database; Cat/proc/meminfo |grep Huge, can see Hugepages_free: The number is declining, indicating that the large page is being used.
[~]# cat/proc/meminfo |grep Huge
hugepages_total:200
Hugepages_free:101
Hugepages_rsvd:10
hugepages_surp:0
hugepagesize:2048 KB

Set large page--hugepage for Oracle database under Linux

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.