博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
direct path read等待事件
阅读量:6693 次
发布时间:2019-06-25

本文共 1363 字,大约阅读时间需要 4 分钟。

Sometimes related to sorting operations, check to see if occurring primarily in temp tablespaces. During Direct Path operations the data is asynchronously read from the database files. At some point the session needs to make sure that all outstanding asynchronous I/O have been completed to disk. This can also happen if, during a direct read, no more slots are available to store outstanding load requests (a load request could consist of multiple I/Os). Direct path reads are generally used by Oracle when reading directly into PGA memory (as opposed to into the buffer cache). If asynchronous I/O is supported (and in use) then Oracle can submit I/O requests and continue processing. It can then pick up the results of the I/O request later and will wait on "direct path read" until the required I/O completes. Solutions 1) Reading from temp tablespaces If the database parameter workarea_size_policy = AUTO: - Increase the database parameter 'pga_aggregate_target' Otherwise: - Increase the database parameter 'sort_area_size'. Another possible solution is to cache the temp datafile at the O/S or Storage system level. 2) Reading application data a. Ensure database parameter, DISK_ASYNC_IO is TRUE b. Ensure no disks are I/O bound. c. Ensure the OS asynchronous I/O is configured correctly.

本文转自maclean_007 51CTO博客,原文链接:http://blog.51cto.com/maclean/1277911

转载地址:http://mjjoo.baihongyu.com/

你可能感兴趣的文章
利用vue-cli配合vue-router搭建一个完整的spa流程(一)
查看>>
Microsoft推出适用于Win 8.1和Win10的KB 4010250 Flash Player更新
查看>>
JS的内置对象系列:Array(一)
查看>>
V8 使用“常量折叠”优化技巧,导致幂(**)运算有时候不等于 Math.pow()
查看>>
前端开源项目周报0228
查看>>
PHP_DOC 实时生成 API 文档
查看>>
微软宣布开源WPF、WinForms和WinUI
查看>>
Firefox 46解决安全问题,改善性能
查看>>
Gilt如何将微服务部署到AWS环境,介绍ION-Roller
查看>>
携程对AIOps场景和算法的探索与实践
查看>>
JavaOne 2016——首日亮点
查看>>
用WinForm/WPF代码来为.NET Core 3.0功能投票
查看>>
BAT集体升级云事业部,这背后都藏着哪些“小心思”?
查看>>
Clojure 1.7引入Transducers,提高跨平台支持度
查看>>
QCon北京2015精彩内容前瞻:邀请100余位一线专家,涵盖大数据、云计算、移动等20余个专题...
查看>>
京东私有云建设:挑战与应对之道
查看>>
入门解读:小白也能看懂的容器和虚拟机介绍
查看>>
微软宣布在Azure API管理中预览OpenAPI规范V3
查看>>
Studio 3T:MongoDB SQL探究
查看>>
学习Kubernetes 和容器技术体系的最佳方法
查看>>