Question: 6 Which three allocate memory per thread in MySQL? A. query cache B. thread cache C. read buffer D. internal temporary table E. sort buffer F. InnoDB buffer pool instance
为什么要调整innodb_buffer_pool_instances 独立管理 flush list,lru,free list;bir,比如对某些大表频繁操作导致LRU全局影响 增强并发能力,降低latch锁争用 在官方文档中有如下解释 The number of regions that the InnoDB buffer pool is divided into. For systems w
Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners. Type 'help
直接路径读取等待事件 这个事件DPR在10G是没有的,是11G新等待事件,目的是让全表扫描和快速索引扫描不走SGA,直接从数据文件读到PGA direct path read的优势 1、采用直接路径读取后,总能保证读取的块数是多块读参数设置的大小,提高了读取的效率 2、大大的降低了对于latch的使用,进而避免了可能导致的latch竞争(cbc latch等) 3、降低了全表扫描对buffer c