Lock_sga 和 pre_page_sga 参数详解

Lock_sga 和 pre_page_sga 参数详解

 

     Lock_sga 和pre_page_sga,是两个平时用的不算太多的参数,但是这两个参数平时在优化的时候可能给你带来比较乐观的性能提升,通过修改lock_sga和pre_pga_sga参数可以保证SGA不被换出到swap,进而而已提高SGA的使用效率。

     当lock_sga参数的值修改设置为true的时候,可以保证整个sga被锁定在物理内存中,这样可以防止sga被换出到swap中;当然理当需要把pre_page_sga参数也设置为true,只有这样才能保证在数据库启动之初将整个sga读取到物理内存,而不走交换内存,从而有效的提高数据库效率,当然会增加数据库的启动时间。

 

调整过程如下:

1、 查看lock_sga和pre_page_sga参数的默认值:

 

SQL> show parameter lock_sga

NAME                                 TYPE        VALUE
------------------------------------ -----------------------------------------
lock_sga                             boolean     FALSE
SQL> show parameter pre_page_sga

NAME                                 TYPE        VALUE
------------------------------------ -----------------------------------------
pre_page_sga                         boolean     FALSE

 

2、 修改这两个参数,因为其是静态参数,故在添加scop=spfile,记录到参数文件,下次启动生效:

SQL> alter system set lock_sga = truescope=spfile;

System altered.

Elapsed: 00:00:00.03
SQL> alter system set pre_page_sga = truescope=spfile;

System altered.

Elapsed: 00:00:00.02
SQL>
 

3、 重启数据库

SQL> startup

ORA-27102: out of memory

Linux-x86_64 Error: 12: Cannot allocate memory
SQL>
 

   发现数据库现在起不来了,想想看,这是什么原因导致启动失败呢,其实很简单,Linux操作系统对每一个任务在内存中能锁住的值做了限制,只需手工修改即可。

 

4、 处理解决ora-27102及Linux-x86_64 Error:12问题:

[oracle@woo ~]$ ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 32768
max locked memory       (kbytes, -l) 32
max memory size         (kbytes, -m) unlimited
open files                      (-n) 65536
pipe size           (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) 16384
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

  从上面信息我们可以看到,一个任务可以锁住的物理内存最大值为32KB,这个值根本没法满足我们sga的大小。那么我们需要对该值进行修改,使其适应及满足相关要求。

 

5、 修改有两种方法:

5.1、临时生效可以切换到root用户通过如下命令,进行修改:

[root@woo ~]# ulimit -l
32
[root@woo ~]# ulimit -l unlimited
[root@woo ~]# ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 32768
max locked memory       (kbytes, -l) unlimited
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size           (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) 32768
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

 

5.2 让其永久生效的方法:

[root@woo ~]# vi /etc/security/limits.conf   最底部添加如下两行
oracle         soft    memlock         unlimited
oracle         hard    memlock        unlimited

 

6、 修改系统限制成功后,启动数据库,可以正常Open,但是时间更长了。

SQL> startup
ORACLE instance started.

Total System Global Area  6081740870 bytes
Fixed Size                  1220844 bytes
Variable Size             197136148 bytes
Database Buffers          406847488 bytes
Redo Buffers                2969600 bytes
Database mounted.
Database opened.
SQL>

 

7、 参考:

关于locak_sga
pre_page_sga 参数在ORACLE10gR2官方文档中的介绍:

 

LOCK_SGA


Property


Description


Parameter type


Boolean


Default value


false


Modifiable


No


Range of values


true | false


Basic


No

 

LOCK_SGAlocks the entire SGA into physical memory. It is usually advisable to lockthe SGA into real (physical) memory, especially if the use of virtual memorywould include storing some of the SGA using disk space. This parameter isignored on
platforms that do not support it.

 

 

PRE_PAGE_SGA


Property


Description


Parameter type


Boolean


Default value


false


Modifiable


No


Range of values


true | false

 

PRE_PAGE_SGAdetermines whether Oracle reads the entire SGA into memory at instancestartup. Operating system page table entries are then prebuilt for each page ofthe SGA. This setting can increase the amount of time necessary for instancestartup,
but it is likely to decrease the amount of time necessary for Oracleto reach its full performance capacity after startup.

Note:

This setting does not prevent your operating system from paging orswapping the SGA after it is initially read into memory.

PRE_PAGE_SGAcan increase the process startup duration, because every process thatstarts must access every page in the SGA. The cost of this strategy is fixed;however, you might simply determine that 20,000 pages must be touched everytime a process
starts. This approach can be useful with some applications, butnot with all applications. Overhead can be significant if your systemfrequently creates and destroys processes by, for example, continually loggingon and logging off.

The advantage thatPRE_PAGE_SGAcan afford depends on page size. For example, if the SGA is 80 MB in sizeand the page size is 4 KB, then 20,000 pages must be touched to refresh the SGA(80,000/4 = 20,000).

If the system permits you to set a 4 MB page size, then only 20 pages mustbe touched to refresh the SGA (80,000/4,000 = 20). The page size is operatingsystem-specific and generally cannot be changed. Some operating systems,however, have a special
implementation for shared memory whereby you can changethe page size.

 

关于Metalink对于该介绍,参考如下地址:

http://space.itpub.net/?uid-20674423-action-viewspace-itemid-767830

http://blog.csdn.net/wuweilong/article/details/9774337

http://www.prudentwoo.com/archives/1207

 

慎重提醒:不同操作系统对着lock_sga参数的支持情况是不同的,如果操作系统不支持这种锁定,参数将忽略。

时间: 2024-10-22 14:16:31

Lock_sga 和 pre_page_sga 参数详解的相关文章

Python中的默认参数详解

  这篇文章主要介绍了Python中的默认参数详解,本文讲解了默认参数的基本原理.如何正确地使用可变参数等内容,需要的朋友可以参考下 文章的主题 不要使用可变对象作为函数的默认参数例如 list,dict,因为def是一个可执行语句,只有def执行的时候才会计算默认默认参数的值,所以使用默认参数会造成函数执行的时候一直在使用同一个对象,引起bug. 基本原理 在 Python 源码中,我们使用def来定义函数或者方法.在其他语言中,类似的东西往往只是一一个语法声明关键字,但def却是一个可执行的

C#基础语法:方法参数详解

这篇文章主要介绍了C#基础语法:方法参数详解,本文讲解了值参数.引用参数.输出参数.参数数组等参数类型,并分别给出代码实例,需要的朋友可以参考下     ●值参数 :一个值参数相当于一个局部变量,当使用值参数的时候,将会分配一个新的存储位置,将实参拷贝到该位置,并将该拷贝值传递给该方法.因此,值参数只能将值带进方法,但是不能带出方法,而不会影响实参的值. ●引用参数:当使用引用参数的时候,将不会分配一个新的存储位置,In other words,引用参数能将值带进方法,也能带出方法,因而会影响实

php setcookie(name, value, expires, path, domain, secure) 参数详解

setcookie() 定义一个和其余的 HTTP 标头一起发送的 cookie.和其它标头一样,cookie 必须在脚本的任何其它输出之前发送(这是协议限制).这 需要将本函数的调用放到任何输出之前,包括 <html> 和 <head> 标签以及任何空格.如果在调用 setcookie() 之前有任何输出,本函数将失败并返回 FALSE.如果 setcookie() 函数成功运行,将返回 TRUE.这并不说明用户是否接受了 cookie.函数定义:bool setcookie (

flash js Fusioncharts 参数详解与参考

flash js fusioncharts 参数详解与参考 objects anchors 锚点 用于标识line或area的数值点 支持效果 animation 动画.shadow 阴影.glow 发光.bevel 倾斜.blur 模糊 动画属性 _alpha._x._y._xscale._yscale background 整个图表的背景 支持属性 animation.shadow.glow.bevel.blur 动画属性 _alpha objects anchors 锚点 用于标识line

gcc参数详解

这篇文档是我的关于gcc参数的笔记,我很怀念dos年代我用小本子,纪录所有的dos 命令的参数.哈哈,下面的东西可能也不是很全面,我参考了很多的书,和gcc的帮助.不全的原因是,有可能我还没有看到这个参数, 另一种原因是,我可能还不会用它 不过,我会慢慢的补齐的.哈哈 如果你要转在本文章请保留我email(pianopan@beeship.com)和文章的全面性.  [介绍]  gcc and g++分别是gnu的c & c++编译器 gcc/g++在执行编译工作的时候,总共需要4步  1.预处

POPSpring动画参数详解

POPSpring动画参数详解   效果   源码 https://github.com/YouXianMing/Animations // // POPSpringParameterController.m // Animations // // Created by YouXianMing on 15/11/29. // Copyright 2015年 YouXianMing. All rights reserved. // #import "POPSpringParameterContro

虚拟主机/空间参数详解

中介交易 http://www.aliyun.com/zixun/aggregation/6858.html">SEO诊断 淘宝客 云主机 技术大厅 刚接触站长行业的朋友免不了对网站空间的需求.无论你是租用收费的,还是使用免费的.对空间的相关参数有一个大体的认识能让你少走许多弯路. 参数详解: 操作系统:一般为win2003或者Linux.这个是指该空间的服务器所使用的系统,这个一般情况可以不管的,直接看其它的参数是否适合自己使用就行了. 网站空间:指的是该空间的容量,就和自己的电脑硬盘是

GhostScript命令参数详解

本文列出几个常用参数,然后下面附上官方的参数详解: 一.常用参数解释 这是一个测试的命令:gs -dQUIET -dNOSAFER -r300 -dBATCH -sDEVICE=pngalpha -dNOPAUSE -dNOPROMPT -sOutputFile=/opt/shanhy/testpng/%d.png /opt/shanhy/test.pdf Linux 中,到文件gs所在目录执行. Windows 中,到GhostScript安装目录下的bin目录下执行 gswin64c 或者

JVM的参数详解(转)

堆大小设置JVM 中最大堆大小有三方面限制:相关操作系统的数据模型(32-bt还是64-bit)限制:系统的可用虚拟内存限制:系统的可用物理内存限制.32位系统下,一般限制在1.5G~2G:64为操作系统对内存无限制.我在Windows Server 2003 系统,3.5G物理内存,JDK5.0下测试,最大可设置为1478m.典型设置:java -Xmx3550m -Xms3550m -Xmn2g -Xss128k-Xmx3550m:设置JVM最大可用内存为3550M.-Xms3550m:设置