[20190409]pre_page_sga=true與連接緩慢的問題.txt

来源:https://www.cnblogs.com/lfree/archive/2019/04/11/10687961.html
-Advertisement-
Play Games

[20190409]pre_page_sga=true與連接緩慢的問題.txt--//曾經遇到11g下設置pre_page_sga=true啟動緩慢的問題(沒有使用hugepages).--//鏈接:http://blog.itpub.net/267265/viewspace-2295412/--/ ...


[20190409]pre_page_sga=true與連接緩慢的問題.txt

--//曾經遇到11g下設置pre_page_sga=true啟動緩慢的問題(沒有使用hugepages).
--//鏈接:http://blog.itpub.net/267265/viewspace-2295412/
--//實際上這樣系統也會遇到連接緩慢的情況,通過測試說明問題.

1.建立pfile:
$ cat initxxxx.ora
db_name=xxxx
instance_name=xxxx
sga_target=20G
#sga_target=0
sga_max_size=20G
pre_page_sga=true

$ export ORACLE_SID=xxxx

SYS@xxxx> startup nomount
ORACLE instance started.
Total System Global Area 2.1379E+10 bytes
Fixed Size                  2262656 bytes
Variable Size            2818574720 bytes
Database Buffers         1.8522E+10 bytes
Redo Buffers               36073472 bytes

$ grep -i page /proc/meminfo
AnonPages:        239336 kB
PageTables:       701008 kB
AnonHugePages:         0 kB
HugePages_Total:     104
HugePages_Free:       48
HugePages_Rsvd:       41
HugePages_Surp:        0
Hugepagesize:       2048 kB

--//才啟動沒有任何用戶連接,PageTables=701008 kB.

2.測試登陸問題:
$ time sqlplus -s -l  / as sysdba <<<quit
real    0m4.944s
user    0m0.024s
sys     0m0.016s
--//單個連接需要5秒.如果多個用戶併發呢?
$ cat aa.sql
quit

$ time seq 50 | xargs -I{} -P 50 sqlplus -s -l  / as sysdba @ aa.sql
real    0m13.978s
user    0m1.833s
sys     0m1.017s
--//多個用戶同時登錄,全部完成需要13秒.

3.分析:
$ strace -f -c sqlplus -s -l  / as sysdba <<<quit
Process 3120 attached
Process 3120 detached
% time     seconds  usecs/call     calls    errors syscall
------ ----------- ----------- --------- --------- ----------------
 99.85    0.419648       69941         6           shmdt
  0.10    0.000434           1       413         2 read
  0.01    0.000046           0       287       127 open
  0.01    0.000045           0       180           mmap
  0.01    0.000037           0       178           close
  0.01    0.000032           0        79           rt_sigaction
  ....
------ ----------- ----------- --------- --------- ----------------
100.00    0.420259                  1970       227 total

$ man shmdt
...
shmdt() detaches the shared memory segment located at the address specified by shmaddr from the address space of the
calling process.  The to-be-detached segment must be currently attached with shmaddr equal to the value returned by the
attaching shmat() call.

On a successful shmdt() call the system updates the members of the shmid_ds structure associated with the shared memory
segment as follows:

shm_dtime is set to the current time.
shm_lpid is set to the process-ID of the calling process.
shm_nattch is decremented by one.  If it becomes 0 and the segment is marked for deletion, the segment is deleted.

--//給人的感覺好像消耗在調用shmdt,實際上消耗的時間0.419648.也就是這樣還是無法定位問題在那裡.

$ strace -fTtt  -e shmdt sqlplus -s -l  / as sysdba
Process 6046 attached
[pid  6046] 08:41:55.548586 shmdt(0x7f2c41600000) = 0 <0.000036>
quit
08:41:59.992835 shmdt(0x60000000)       = 0 <0.000042>
08:41:59.992983 shmdt(0x68000000)       = 0 <0.000042>
08:41:59.993097 shmdt(0x6c000000)       = 0 <0.360175>
08:42:00.353446 shmdt(0x4ec000000)      = 0 <0.037200>
08:42:00.390737 shmdt(0x560000000)      = 0 <0.000026>
Process 6046 detached
--//我手工執行quit,可以發現shmdt調用發生在退出階段,也就是不是它導致登陸緩慢.

$ ipcs -smt

------ Shared Memory Attach/Detach/Change Times --------
shmid      owner      attached             detached             changed
352092161  oracle      Apr 10 17:26:09      Apr 10 17:26:17      Apr 10 17:09:55
352124930  oracle      Apr 10 17:26:09      Apr 10 17:26:17      Apr 10 17:09:55
352157699  oracle      Apr 10 17:26:09      Apr 10 17:26:18      Apr 10 17:09:55
352190469  oracle      Apr 10 17:26:09      Apr 10 17:26:18      Apr 10 17:09:55
352223238  oracle      Apr 10 17:26:09      Apr 10 17:26:18      Apr 10 17:09:55

------ Semaphore Operation/Change Times --------
semid    owner      last-op                    last-changed
310738944 oracle      Wed Apr 10 17:11:33 2019   Wed Apr 10 17:11:33 2019
--//從執行時間看4.5秒並不是消耗在這裡.

4.繼續分析,排除調用shmdt的情況:

$ strace -fTr -o /tmp/a2.txt  sqlplus  -s -l / as sysdba <<<quit
$ awk '{print $2}' /tmp/a2.txt | sort -nr | head
5.041521
0.287119
0.064745
0.008298
0.006386
0.004288
0.004272
0.001319
0.000982
0.000978

--//查看a2.txt
3366       0.000067 stat("/u01/app/oracle/product/11.2.0.4/dbhome_1/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 <0.000025>
3366       0.000112 chdir("/u01/app/oracle/product/11.2.0.4/dbhome_1/dbs") = 0 <0.000027>
3366       5.041521 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4c2c0b3000 <0.000048>
3366       0.000407 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4c2c090000 <0.000015>
3366       0.000127 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4c2c06d000 <0.000013>
3366       0.000218 getcwd("/u01/app/oracle/product/11.2.0.4/dbhome_1/dbs"..., 256) = 46 <0.000016>
3366       0.000087 access("/etc/intchg.ora", F_OK) = -1 ENOENT (No such file or directory) <0.000019>
...
--//也就是在chdir調用與mmap調用之間有5秒不知道在乾什麼?(chdir 僅僅需要0.000027秒).strace看不出來!!
--//如果你使用top -u oracle觀察,你可以發現RES欄位不斷在增加,接近SGA設置.我的感覺就是在這裡建立pagetables的過程.

$ cat aa.sql
host sleep 1
quit

$ cat a.sh
#! /bin/bash
export ORACLE_SID=xxxx
sqlplus  -s -l / as sysdba @ aa.sql &
a=$(($!+2))
top -p $a -d 1 -b

$ . a.sh | tee /tmp/aa.txt
...
--//按ctrl+c中斷.

$ grep PID /tmp/aa.txt | head -1; egrep 'oracle' /tmp/aa.txt
  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
 8498 oracle    20   0 20.2g 1.5g 1.5g R 93.9  1.2   0:00.47 oracle
 8498 oracle    20   0 20.2g 5.8g 5.8g R 99.7  4.6   0:01.47 oracle
 8498 oracle    20   0 20.2g  10g  10g R 99.8  8.4   0:02.47 oracle
 8498 oracle    20   0 20.2g  15g  15g R 99.8 12.2   0:03.47 oracle
--//sleep 1
 8498 oracle    20   0 20.2g  19g  19g S 95.9 15.7   0:04.43 oracle
 8498 oracle    20   0 20.2g  19g  19g S  0.0 15.7   0:04.43 oracle
 8498 oracle    20   0 20.0g  19g  19g R  1.0 15.6   0:04.44 oracle
--//你可以發現RES,SHR都在增加,CPU使用率在9X%,感覺11g版本在設置pre_page_sga=true下有問題.
--//大致定位時間定位在建立pagetables的過程.

5.改用hugepages呢?
$ grep -i page /proc/meminfo
AnonPages:        244144 kB
PageTables:        11508 kB
AnonHugePages:         0 kB
HugePages_Total:   26000
HugePages_Free:    15800
HugePages_Rsvd:       41
HugePages_Surp:        0
Hugepagesize:       2048 kB

$ time  sqlplus -s -l  / as sysdba <<<quit
real    0m0.180s
user    0m0.029s
sys     0m0.011s

$ strace -fTr -o /tmp/a3.txt  sqlplus  -s -l / as sysdba <<<quit
$ awk '{print $2}' /tmp/a3.txt | sort -nr | head
0.121929
0.009182
0.009144
0.009047
0.005081
0.002050
0.001984
0.001932
0.001321
0.001243

--//查看a3.txt
8716       0.000095 chdir("/u01/app/oracle/product/11.2.0.4/dbhome_1/dbs") = 0 <0.000019>
--//這裡等待時間很小.
8716       0.121929 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f552659d000 <0.000029>
8716       0.000143 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f552657a000 <0.000020>
8716       0.000166 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5526557000 <0.000020>
8716       0.000260 getcwd("/u01/app/oracle/product/11.2.0.4/dbhome_1/dbs"..., 256) = 46 <0.000023>

--//總之:
如果pre_page_sga=true最好開啟hugepages.
很奇怪的是12c 預設pre_page_sga=true,沒有開啟hugepages的情況下,沒有這個問題.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Elasticsearch的type有什麼用處? 通過type元欄位實現了什麼功能? 底層如何使用? 有哪些註意事項/最佳實踐? 本篇文章對這些內容作一個簡單的探討. ...
  • SQL 中遠程調用失敗的原因 1.服務裡面的啟動許可權未能啟動,修改sql對應的服務進程許可權就可以了 2.是因為VS 和SQL 起衝突了,資料庫找不到訪問地址導致的。解決的辦法很簡單,就是卸載掉多餘的版本 方法一: Win + X 打開控制管理 電腦管理 服務和應用程式 服務,找到 SQL Serv ...
  • pt table sync Synchronize MySQL table data efficiently. pt table sync synchronizes data efficiently between MySQL tables. pt table sync 是Percona Toolk ...
  • 2019-04-1116:01:25 表空間分配10m自動擴展,向表中插入數據,看表空間達到10m以後是否會報錯。 測試過程如下: 1、創建表空間 CREATE TABLESPACE TEST DATAFILE '/u01/app/oracle/oradata/test/TESTDB/TEST01. ...
  • SQL Server的Linked Server支持使用SEQUENCE嗎? SQL Server 2012開始支持序列(SEQUENCE),今天遇到有個同事咨詢,能否在LINKED SERVER裡面調用SEQENCE, 結果我測試發現不行,但是不管官方文檔也好,網上相關資料也罷,都沒有說支持,也沒... ...
  • PGA
    PGA全稱為Program Global Area,即程式全局區 它是一塊包含一個服務進程的數據和控制信息的記憶體區域,是 Oracle 在一個服務進程啟動是創建的,是非共用的 一個Oracle進程擁有一個PGA記憶體區,一個 PGA也只能被擁有它的那個服務進程所訪問,只有這個進程中的Oracle代碼才 ...
  • 本文節選自《軟體架構設計:大型網站技術架構與業務架構融合之道》第6.4章節。 作者微信公眾號:架構之道與術。進入後,可以加入書友群,與作者和其他讀者進行深入討論。也可以在京東、天貓上購買紙質書。 6.4.1 事務的四個隔離級別 通俗地講,事務就是一個“代碼塊”,這個代碼塊要麼不執行,要麼全部執行。事 ...
  • 本文節選自《軟體架構設計:大型網站技術架構與業務架構融合之道》第6.3章節。 作者微信公眾號: 架構之道與術。進入後,可以加入書友群,與作者和其他讀者進行深入討論。也可以在京東、天貓上購買紙質書。 關係型資料庫在查詢方面有一些重要特性,是KV型的資料庫或者緩存所不具備的,比如:(1)範圍查詢。(2) ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...