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官方文档中的介绍:
|
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.
|
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参数的支持情况是不同的,如果操作系统不支持这种锁定,参数将忽略。
Lock_sga 和 pre_page_sga 参数详解的更多相关文章
- Nginx主配置参数详解,Nginx配置网站
1.Niginx主配置文件参数详解 a.上面博客说了在Linux中安装nginx.博文地址为:http://www.cnblogs.com/hanyinglong/p/5102141.html b.当 ...
- iptables参数详解
iptables参数详解 搬运工:尹正杰 注:此片文章来源于linux社区. Iptalbes 是用来设置.维护和检查Linux内核的IP包过滤规则的. 可以定义不同的表,每个表都包含几个内部的链,也 ...
- chattr的常用参数详解
chattr的常用参数详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 在实际生产环境中,有的运维工程师不得不和开发和测试打交道,在我们公司最常见的就是部署接口.每天每个人部署的 ...
- mha配置参数详解
mha配置参数详解: 参数名字 是否必须 参数作用域 默认值 示例 hostname Yes Local Only - hostname=mysql_server1, hostname=192.168 ...
- $.ajax()方法所有参数详解;$.get(),$.post(),$.getJSON(),$.ajax()详解
[一]$.ajax()所有参数详解 url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址. type: 要求为String类型的参数,请求方式(post或get)默认为get.注 ...
- linux PHP 编译安装参数详解
linux PHP 编译安装参数详解 ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc -- ...
- 【转】jqGrid 各种参数 详解
[原文]http://www.cnblogs.com/younggun/archive/2012/08/27/2657922.htmljqGrid 各种参数 详解 JQGrid JQGrid是一个 ...
- HTML滚动字幕代码参数详解及Js间隔滚动代码
html文字滚动代码 <marquee style="WIDTH: 388px; HEIGHT: 200px" scrollamount="2" dire ...
- mysql5.6主从参数详解
mysql5.6的主从相当的不错,增加了不少参数,提升了主从同步的安全和效率,以下是mysql5.6主从参数详解. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ...
随机推荐
- 【Java】运用JDBC实现一个注册、登录系统的编写
数据库的建立 首先,建立一个数据库,存储注册成功的账户信息. 其SQL的DDL语句如下: CREATE TABLE `jdbctest` ( `id` int(10) NOT NULL auto_in ...
- 【c语言】模拟库函数strstr
// 模拟库函数strstr #include <stdio.h> #include <assert.h> const char* my_strstr(const char * ...
- HDU 1016 Prime Ring Problem 题解
Problem Description A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ... ...
- cocos2d-x ndk adt mac 路径配置
export PATH=/bin:/sbin:/usr/local/mysql/bin export PATH=$PATH:/Applications/MacVim-snapshot-68 expor ...
- JDBC与反射
什么是JDBC Java定义了一套关于连接使用数据库的规范(接口)叫做JDBC,许多数据库厂商实现了这个规范,所以我们可以通过Java提供的接口编程,使得我们更换数据库的时候不用修改原来的代码,只需要 ...
- js检测浏览器中是否安装了flash播放插件
这两天工作中需要在网页中嵌入flash小游戏,我使用的是swfobject.js version:1.5.其他方面都很好,唯独版本检测这里一直没有搞通,后来实在无奈之下,改用js来检测浏览器的flas ...
- Android实现隐藏状态栏和标题栏
隐藏标题栏需要使用预定义样式:android:theme=”@android:style/Theme.NoTitleBar”. 隐藏状态栏:android:theme=”@android:style/ ...
- .NET 使用 MySql.Data.dll 动态库操作MySql的帮助类--MySqlHelper
.NET 使用 MySql.Data.dll 动态库操作MySql的帮助类--MySqlHelper 參考演示样例代码,例如以下所看到的: /// <summary> /// MySql ...
- client对象层次和0级DOM
刚開始学了两天JS,闲着无聊,顺手画了张图
- Oracle SQL Lesson (4) - 使用转换函数和条件表达式
隐式转换select * from emp where empno='7788'字符(char,varchar2)转换为数字(number)或日期(date)数字或日期转换为字符 显式转换字符转换为数 ...