【引數】使用lock_sga和pre_page_sga引數保證SGA常駐實體記憶體
當lock_sga引數設定為TRUE時(預設值是FALSE),可以保證整個SGA被鎖定在實體記憶體中,這樣可以防止SGA被換出到虛擬記憶體。只要設定lock_sga為“TRUE”便可保證SGA被鎖定在實體記憶體中,這裡之所以順便將pre_page_sga引數也設定為“TRUE”,是因為這樣可以保證在啟動資料庫時把整個SGA讀入到實體記憶體中,以便提高系統的效率(雖然會增加系統的啟動時間)。
修改過程如下:
1.檢視lock_sga和pre_page_sga引數的預設值
sys@ora10g> show parameter sga
NAME TYPE VALUE
--------------- -------------------- -----------------
lock_sga boolean FALSE
pre_page_sga boolean FALSE
sga_max_size big integer 5G
sga_target big integer 5G
2.注意:兩個引數都是靜態引數。確認之。
sys@ora10g> alter system set lock_sga=true;
alter system set lock_sga=true
*
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified
sys@ora10g> alter system set pre_page_sga=true;
alter system set pre_page_sga=true
*
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified
3.使用“scope=spfile”選項修改之,成功。
sys@ora10g> alter system set lock_sga=true scope=spfile;
System altered.
sys@ora10g> alter system set pre_page_sga=true scope=spfile;
System altered.
4.重新啟動Oracle使spfile的修改生效
sys@ora10g> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
sys@ora10g> startup;
ORA-27102: out of memory
Linux-x86_64 Error: 12: Cannot allocate memory
“小坎坷”出現了,想一想,這裡為什麼會啟動失敗呢?
原因很簡單,Linux作業系統對每一個任務在實體記憶體中能夠鎖住的最大值做了限制!需要手工進行調整。
5.“ORA-27102”及“Cannot allocate memory”問題處理
1)使用“ulimit -a”命令獲得“max locked memory”的預設大小
ora10g@secDB /home/oracle$ 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) 266239
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
可見,一個任務可以鎖住的實體記憶體最大值是32kbytes,這麼小的值根本無法滿足我們SGA的5G大小需求。
2)將其修改為無限大
(1)oracle使用者是無法完成這個修改任務的
ora10g@secDB /home/oracle$ ulimit -l unlimited
-bash: ulimit: max locked memory: cannot modify limit: Operation not permitted
(2)切換到root使用者
ora10g@secDB /home/oracle$ su - root
Password:
(3)在root使用者下嘗試修改,成功。
[root@secDB ~]# ulimit -l unlimited
[root@secDB ~]# 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) 266239
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) 2047
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
6.調整完作業系統的限制後,我們再次嘗試啟動資料庫。成功!
[root@secDB ~]# su - oracle
ora10g@secDB /home/oracle$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.3.0 - Production on Sun Dec 20 22:21:40 2009
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Connected to an idle instance.
NotConnected@> startup;
ORACLE instance started.
Total System Global Area 5368709120 bytes
Fixed Size 2080320 bytes
Variable Size 905970112 bytes
Database Buffers 4445962240 bytes
Redo Buffers 14696448 bytes
Database mounted.
Database opened.
7.lock_sga和pre_page_sga引數在Oracle 10gR2官方文件中的描述,供參考。
LOCK_SGA
Property | Description |
---|---|
Parameter type | Boolean |
Default value | false |
Modifiable | No |
Range of values | true | false |
Basic | No |
LOCK_SGA locks the entire SGA into physical memory. It is usually advisable to lock the SGA into real (physical) memory, especially if the use of virtual memory would include storing some of the SGA using disk space. This parameter is ignored on platforms that do not support it.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams168.htm#REFRN10174
PRE_PAGE_SGA
Property | Description |
---|---|
Parameter type | Boolean |
Default value | false |
Modifiable | No |
Range of values | true | false |
PRE_PAGE_SGA determines whether Oracle reads the entire SGA into memory at instance startup. Operating system page table entries are then prebuilt for each page of the SGA. This setting can increase the amount of time necessary for instance startup, but it is likely to decrease the amount of time necessary for Oracle to reach its full performance capacity after startup.
Note:
This setting does not prevent your operating system from paging or swapping the SGA after it is initially read into memory.PRE_PAGE_SGA can increase the process startup duration, because every process that starts 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 every time a process starts. This approach can be useful with some applications, but not with all applications. Overhead can be significant if your system frequently creates and destroys processes by, for example, continually logging on and logging off.
The advantage that PRE_PAGE_SGA can afford depends on page size. For example, if the SGA is 80 MB in size and 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 must be touched to refresh the SGA (80,000/4,000 = 20). The page size is operating system-specific and generally cannot be changed. Some operating systems, however, have a special implementation for shared memory whereby you can change the page size.
8.小結
透過修改lock_sga和pre_page_sga引數值為“TRUE”可以有效的將整個SGA鎖定在實體記憶體中,這樣可以有效的提高系統的效能,推薦酌情進行調整。
注意:不同的作業系統對這lock_sga引數的支援情況是不同的,如果作業系統不支援這種鎖定,lock_sga引數將被忽略。
Good luck.
secooler
09.12.20
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29067253/viewspace-2142473/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 從記憶體洩露、記憶體溢位和堆外記憶體,JVM優化引數配置引數記憶體洩露記憶體溢位JVM優化
- JVM記憶體引數配置JVM記憶體
- [20181109]12cR2 的pre_page_sga引數.txt
- [20221212]關於pre_page_sga引數的問題.txt
- 【ASK_ORACLE】LOCK_SGA引數失效的解決辦法Oracle
- Linux 虛擬記憶體引數配置Linux記憶體
- mysql記憶體引數分類大全MySql記憶體
- solaris記憶體引數調整及管理記憶體
- jvm的記憶體引數配置(skycto JEEditor)JVM記憶體
- 【CDB】怎樣修改PDB的記憶體引數記憶體
- 實體類引數複製
- LOCK_SGA(zt)
- Bulk 異常引發的 Elasticsearch 記憶體洩漏Elasticsearch記憶體
- C技巧:結構體引數轉成不定引數結構體
- 【Java基礎】函式引數為物件時的記憶體管理Java函式物件記憶體
- nginx 常見引數以及重定向引數配置Nginx
- 超大記憶體環境下的Oracle RAC引數設定建議記憶體Oracle
- MixPHP:基於 Swoole 的常駐記憶體型 PHP 框架PHP記憶體框架
- Spring Boot 使用 JSR303 實現引數驗證Spring BootJS
- Java對比有引數和無引數Java
- OC-從記憶體角度理解block可作為方法傳入引數的原因記憶體BloC
- Oracle Exadata與SGA快取記憶體CQOracle快取記憶體
- php常駐程式記憶體洩露的簡單解決PHP記憶體洩露
- Bash變數和引數變數
- python變數和引數Python變數
- java和C#使用證照對引數簽名、加密JavaC#加密
- 記憶體管理實戰案例分析1:缺頁異常和檔案系統引發的當機記憶體
- 引數的定義和引數的傳遞
- Kotlin藝術探索之引數和異常Kotlin
- linux記憶體管理(一)實體記憶體的組織和記憶體分配Linux記憶體
- linux系統swappiness引數在記憶體與交換分割槽間最佳化LinuxAPP記憶體
- JVM完整詳解:記憶體分配+執行原理+回收演算法+GC引數等JVM記憶體演算法GC
- mydumper和myloader使用引數解釋
- mydumper和myloader引數使用說明
- JVM常見引數設定JVM
- TypeScript 函式可選引數和預設引數TypeScript函式
- postman 請求引數和 Spring Boot Controller 接受引數PostmanSpring BootController
- 小程式內引數和掃碼引數統一
- SOLIDWORKS軟體引數化建模配合技巧Solid