zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-200题-6题-90

    QUESTION 6

    View the exhibit and examine the output.

    NOTE: Exhibit Estimated, Not The Actual Exhibit


    Which statement can be an inference from the output?

    A. The FRA disk group has an asynchronous I/O bottleneck

    B. The least number of I/Os are performed on the lastdata file in the list

    C. The number of times that the backup or restore process directed the OS to wait until an I/O was complete is

    the highest for the last data file in the list

    D. The number of times that the backup or restore process made an OS call to poll for I/O completion in

    Nonblocking mode is the least for the FRA disk group

    Answer: A

    同90题:http://blog.csdn.net/rlhua/article/details/18793669


    Explanation/Reference:

    Section: Managing Database Performance & Tuning

    NO EXHIBIT - ANSWER impossible / A) is set as placeholder

    Oracle Press 1Z0-053 Exam Guide, Chapter 8: Monitoring and Tuning RMAN

    Monitoring Asynchronous I/O

    To monitor asynchronous I/O operations, you use thedynamic performance view V$BACKUP_ASYNC_IO.

    The key columns to watch are the following:

    - IO_COUNT: Number of I/Os performed on thefile

    - LONG_WAITS: Number of times the backup or restore process had to tell the OS to wait for the I/O to

    complete

    - SHORT_WAIT_TIME_TOTAL: Total time, in hundredths of a second, taken for nonblocking polling for

    I/O completion

    - LONG_WAIT_TIME_TOTAL: Total time, in hundredths of a second, taken while blocking waits for

    I/O completion

    The largest ratio of LONG_WAITS to IO_COUNT is a likely bottleneck in the backup process.

    SHORT_WAIT_TIME_TOTAL and LONG_WAIT_TIME_TOTAL are also indicators of a bottleneck if they are

    nonzero.

    This example identifies two input files with nonzero ratios:

    SQL> select long_waits / io_count waitcountratio, filename

    2 from v$backup_async_io

    3 where long_waits / io_count > 0

    4 order by long_waits / io_count desc;

    WAITCOUNTRATIO FILENAME

    -------------- ----------------------------------------

    .248201439 /u01/oradata/bkup/6bjmt1e3_1_1.

    2 /u01/app/oracle/flash_recovery_area/HR/autobackup/2008_07_31/o1_mf_s_661554862_% u_.bkpSQL>

    For these two files, you may consider increasing the multiplexing to decrease or eliminate the wait times when backing them up.

    Exam Tip:

    If you are using synchronous I/O but you have set BACKUP_DISK_IO_SLAVES to TRUE, then the I/O

    performance is monitored in V$BACKUP_ASYNC_IO.

  • 相关阅读:
    Jmeter对HTTP请求压力测试、并发测试的简单使用方法
    ActiveMQ学习笔记(4)----JMS的API结构和开发步骤
    SpringBoot项目如何进行打包部署
    ActiveMQ学习笔记(3)----JMS的可靠性机制
    狗屎一样的代码!快,重构我!
    代码对比工具,我就用这 6 个!
    Spring Boot 实现定时任务的 4 种方式
    阿里巴巴26个屌炸天的开源项目,你知道几个?
    centos7添加bridge-nf-call-ip6tables出现No such file or directory
    mysql国内镜像下载网址
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316178.html
Copyright © 2011-2022 走看看