- 作者: ユーレッシュヴァハリア,Uresh Vahalia,徳田英幸,戸辺義人,中村明,津田悦幸
- 出版社/メーカー: ピアソンエデュケーション
- 発売日: 2000/05
- メディア: 単行本
- 購入: 4人 クリック: 37回
- この商品を含むブログ (8件) を見る
UNIX System V では、プロセス間通信(IPC)機構の一部として共有メモリ機構が提供されている(第6.3.4項参照)。
(中略)
ただし、匿名オブジェクトは、それを構成するページに対してバッキング・ストアを提供していない。このため各ページは初回変更時に匿名ページに変更され、スワップ・デバイスにバックアップされるようになる。
Oracle8i&UNIXパフォーマンスチューニング―Oracle8i+UNIXのための最適化技法 (Database developer’s guide)
- 作者: アハメドアロマリ,Ahmed Alomari,財井一彰
- 出版社/メーカー: ピアソンエデュケーション
- 発売日: 2002/03
- メディア: 単行本
- クリック: 4回
- この商品を含むブログ (4件) を見る
共有メモリページは、明示的にmlcok()システムコールを呼び出さないかぎり、ロックされない。mlock()システムコールは、mlock()に指定されたメモリページを主記憶内でロックする。これにより、ページがスワップやページアウトされなくなる。
共有メモリーを固定して、ページングを防ぎ、入出力のオーバーヘッドを減らすことができます。そのためには、LOCK_SGAパラメータをtrueに設定します。AIX 5Lの場合、基礎となるハードウェアでラージ・ページ機能がサポートされていれば、同じパラメータによりこの機能がアクティブになります。
Oracle Databaseのチューニング
Paging is not necessarily a bad thing – moving older and not-so-often used data out of memory is something that will be done rather routinely – this is how AIX keeps a healthy system. However, when SGA memory starts to page out (and, more importantly, page back in) things can go bad quickly as, well, ORACLE does not really expect SGA to be a disk based area … (ORACLE would have called it “SDA” if that was the case ;-) )
You probably know that in the vast majority of configurations, it is strongly advised to size SGA so that it fits entirely into physical memory and never pages out. The question becomes: how can we accomplish that on AIX?
intermediatesql.com
The symptom is that paging space usage may increase over time as different areas of DB2's shared memory are paged out
http://www-304.ibm.com/support/docview.wss?uid=jpn1J1006032
参考
- NOTE:17094.1
- NOTE:38998.1
- LISTENER_NETWORKS
- intermediatesql.com -