oracle非同步IO之filesystemio_options引數

mengbing1990發表於2018-04-12
非同步I/O也就意味著讀寫可同時進行。

alter system set filesystemio_options=setall scope=spfile;


到linux系統下,檢視非同步IO情況。

grep kio /proc/slabinfo.

看到kiocb已經有資料值了,說明非同步IO已經生效了。

alter system set filesystemio_options=(none/setall/directIO/asynch)

ASYNCH: enable asynchronous I/O on file system files, which has no timing requirement for transmission.
在檔案系統檔案上啟用非同步I/O,在資料傳送上沒有計時要求。

DIRECTIO: enable direct I/O on file system files, which bypasses the buffer cache.
在檔案系統檔案上啟用直接I/O,繞過buffer cache

SETALL: enable both asynchronous and direct I/O on file system files.
在檔案系統檔案上啟用非同步和直接I/O

NONE: disable both asynchronous and direct I/O on file system files.
在檔案系統檔案上禁用非同步和直接I/O

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29551564/viewspace-2152832/,如需轉載,請註明出處,否則將追究法律責任。

相關文章