Memory Notification: Library Cache Object loaded into SGA Heap size 2098K exceeds notification thres
Memory Notification: Library Cache Object loaded into SGA
Heap size 2098K exceeds notification threshold (2048K)
出現原因:
These are warning messages that should not cause the program responsible for these errors to fail. They appear as a result of new event messaging mechanism and memory manager in 10g Release 2.
這都是警告資訊不會因為這些錯誤資訊造成應用程式執行失敗.在oracle10gr2中是由於新的事件訊息機制和記憶體管理才出現的.
The meaning is that the process is just spending a lot of time in finding free memory extents during an allocate as the memory may be heavily fragmented. Fragmentation in memory is impossible to eliminate completely, however, continued messages of large allocations in memory indicate there are tuning opportunities on the application.
這個訊息意味著程式在記憶體呆能存在大量碎片的情況下在執行記憶體分配時花了很長的時間來尋找可用的記憶體空間.記憶體中的碎片不可能完全消除,然而在進行記憶體分配時持續出現這種訊息說明可能是時候對應用程式進行最佳化了.
The messages do not imply that an ORA-4031 is about to happen.
這個訊息並不意味著ora-4031錯誤會立刻出現.
解決方法:
In 10g we have a new undocumented parameter that sets the KGL heap size warning threshold. This parameter was not present in 10gR1. Warnings are written if heap size exceeds this threshold.
在oracle10g中有一個新的隱含引數來設定KGL堆大小警告閾值.這個引數在10gr1中沒有.當堆大小超過閾值時就會寫入警告資訊.
Set _kgl_large_heap_warning_threshold to a reasonable high value or zero to prevent these warning messages. Value needs to be set in bytes.
將_kgl_large_heap_warning_threshold設定為一個合理的較高的值或為0可以阻止這些警告資訊.它的大小單位是byte.
If you want to set this to 8192 (8192 * 1024) and are using an spfile:
(logged in as "/ as sysdba")
SQL> alter system set "_kgl_large_heap_warning_threshold"=8388608 scope=spfile ; SQL> shutdown immediate SQL> startup
If using an "old-style" init parameter,Edit the init parameter file and add
_kgl_large_heap_warning_threshold=8388608
NOTE: The default threshold in 10.2.0.1 is 2M. So these messages could show up frequently in some application environments.
注意:在10.2.0.1中這個預設的閾值是2M.因此在有些程式環境中這些警告資訊經常出現.
In 10.2.0.2, the threshold was increased to 50MB after regression tests, so this should be a reasonable and recommended value.
在10.2.0.2中,這個預設的閾值增加到50M.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26015009/viewspace-1061039/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Memory Notification: Library Cache Object loaded into SGAObject
- Memory Notification: Library Cache Object loaded into SGA 告警Object
- Memory Notification: Library Cache Object loaded into SGA問題Object
- Library Cache Object loaded into SGA Heap size 2226K exceeds notification threshold (2048K)Object
- 【問題處理】Memory Notification: Library Cache Object loaded into SGAObject
- Memory Notification: Library Cache Object Loaded Into Sga [ID 330239.1]Object
- 解決Heap size *K exceeds notification threshold(2048K)
- Heap size 2498K exceeds notification threshold (2048K) 問題處理
- oracle 10.2.0.1的小bug:Memory NotificationLibrary Cache Object Loaded Into SgaOracleObject
- [轉]10.2.0.1的小bug:Memory NotificationLibrary Cache Object Loaded Into SgaObject
- library cache內容系列一之library hash bucket--library object handle--heapObject
- Flush an Object Out The Library Cache [SGA] Using The DBMS_SHARED_POOLObject
- 關於memory_max_target,memory_target,sga_max_size,sga_target
- laravel NotificationLaravel
- REDIS key notificationRedis
- Android 《Notification》Android
- websword-update-notificationWeb
- influxdb報錯:cache-max-memory-size exceededUX
- Flutter 通知(Notification)冒泡原理Flutter
- Android中的NotificationAndroid
- Notification桌面通知實踐
- Android Notification 詳解Android
- Android 通知之 NotificationAndroid
- android之Notification通知Android
- Android O 新特性 — NotificationAndroid
- User Notification Framework 框架的使用Framework框架
- oreo上的notification詳解
- Android通知Notification全面剖析Android
- Notification與多執行緒執行緒
- Android Notification 通知詳解Android
- 在EBS中配置Notification MailerAI
- shared pool之三:library cache結構/library cache object的結構-dump LibraryHandleObject
- ORA-27092: skgfofi: size of file exceeds file size limit of the processMIT
- Android之Notification和RemoteviewAndroidREMView
- [轉]Android 通知Notification 詳解Android
- 深度解析 Delegate 和 Notification 和 KVO
- HTML5 桌面通知:Notification APIHTMLAPI
- Android 8 通知渠道(Notification Channels)Android