PDF (US Ltr)
        - 43.3Mb
                                PDF (A4)
        - 43.4Mb
                                Man Pages (TGZ)
        - 297.1Kb
                                Man Pages (Zip)
        - 402.4Kb
                                Info (Gzip)
        - 4.3Mb
                                Info (Zip)
        - 4.3Mb
                    
            Search Results
                        
                    
                    
            https://dev.mysql.com/doc/refman/8.0/en/innodb-compression-background.html
                                 Because processors and cache memories have increased in speed more than disk storage devices, many workloads are disk-bound. Data compression enables smaller database size, reduced I/O, and improved throughput, at the small cost of increased CPU ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-compression-tuning.html
                                 Most often, the internal optimizations described in InnoDB Data Storage and Compression ensure that the system runs well with compressed data. However, because the efficiency of compression depends on the nature of your data, you can make decisions ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-compression-usage.html
                                 Compressed tables can be created in file-per-table tablespaces or in general tablespaces. The system tablespace (space 0, the .ibdata files) can contain user-created tables, but it also contains internal system data, which is never compressed. 
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-compression.html
                                 This section provides information about the InnoDB table compression and InnoDB page compression features. The page compression feature is also referred to as transparent page compression. Using the compression features of InnoDB, you can create ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-disk-management.html
                                 As a DBA, you must manage disk I/O to keep the I/O subsystem from becoming saturated, and manage disk space to avoid filling up storage devices. The ACID design model requires a certain amount of I/O that might seem redundant, but helps to ensure ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-doublewrite-buffer.html
                                 The doublewrite buffer is a storage area where InnoDB writes pages flushed from the buffer pool before writing the pages to their proper positions in the InnoDB data files. If there is an operating system, storage subsystem, or unexpected mysqld ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-error-handling.html
                                InnoDB sometimes rolls back only the statement that failed, other times it rolls back the entire transaction. If you run out of file space in a tablespace, a MySQL Table is full error occurs and InnoDB rolls back the SQL statement. A transaction ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-file-defragmenting.html
                                 Random insertions into or deletions from a secondary index can cause the index to become fragmented. Fragmentation means that the physical ordering of the index pages on the disk is not close to the index ordering of the records on the pages, or ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-information-schema-examples.html
                                 Note This section describes locking information as exposed by the Performance Schema data_locks and data_lock_waits tables, which supersede the INFORMATION_SCHEMA INNODB_LOCKS and INNODB_LOCK_WAITS tables in MySQL 8.0. For similar discussion ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-init-startup-configuration.html
                                 The first decisions to make about InnoDB configuration involve the configuration of data files, log files, page size, and memory buffers, which should be configured before initializing InnoDB. Modifying the configuration after InnoDB is initialized ...