DBAsupport.com Forums - Powered by vBulletin
Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: Buffer Hit Ratio

  1. #11
    Join Date
    Jan 2002
    Posts
    6
    The maximum value of the overall multiblock read factor is calculated as:

    (db_block_size * db_file_multiblock_read_count)

    The value of db_file_multiblock_read_count is limited by the multiblock read factor in the operating system level.

    Regardless of the MAX_IO_SIZE value allowed by your operating system,
    db_file_multiblock_read_count cannot exceed:

    (db_block_buffers/4)


    NOTE: Benchmarks of values higher than 32 have shown little, if any performance gain.

    As quoted by note: 1037322.6
    Metalink.
    Fiz
    OCP Oracle DBA 7, 8, 8i

  2. #12
    Join Date
    Feb 2001
    Posts
    44

    Unhappy

    How can I find out the size that unix reads when it performs I/O to disk?..so are you guys saying if my unix can read 256K I can leave as it is, but if it can only read 64k, I should reduce to 8 right? and this will improve my buffer hit ratio?I'm confuse now.

  3. #13
    Join Date
    Feb 2001
    Posts
    44
    Regardless of the MAX_IO_SIZE value allowed by your operating system,
    db_file_multiblock_read_count cannot exceed:

    (db_block_buffers/4)


    If above statement is true, then

    db_block_buffer=16384 / 4 = 4096k is that mean my db_file_multiblock_read_count should be 4?

  4. #14
    Join Date
    Nov 2000
    Location
    Pittsburgh, PA
    Posts
    4,166
    16384*8192 / 4 = 32768k
    buffer blocks * block size / 4 = max multiblock read count

    It sounds like db_file_multiblock_read_count = 8192 would work fine.


  5. #15
    Join Date
    Jun 2001
    Location
    Helsinki. Finland
    Posts
    3,938
    Originally posted by yongchoi75
    How can I find out the size that unix reads when it performs I/O to disk?..so are you guys saying if my unix can read 256K I can leave as it is, but if it can only read 64k, I should reduce to 8 right? and this will improve my buffer hit ratio?I'm confuse now.
    1. Ask your system administrator.
    2. Yes.
    3. No.




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width