zoukankan      html  css  js  c++  java
  • Transaction Log Reuse Wait

    From link as below:

    http://sqlity.net/en/556/t-sql-tuesday-25-%E2%80%93-sql-server-tips-tricks/

    One question that keeps coming up in forums, at user group meetings and on twitter is: Why is my transaction log growing out of bounds?

    To adhere to the ACID properties, SQL Server records all changes to the database first into the transaction log file. A transaction can only be committed after that write succeeds. The changes to the data itself actually get applied only to the data pages in the buffer pool. If and when they get written to the disk is influenced by several factors that are independent of the transaction itself. The records in the transaction log allow SQL Server to redo a change after a crash for example that prevented the data page changes to be written to disk.

    That means in theory, that after the transaction is committed and after the data pages are preserved on disk, there is no need for SQL Server to hold on to the transaction log data anymore. That's why the transaction log usually does not grow unbounded, because SQL Server can reuse the parts of the file(s) that are not needed anymore.

    In practice however, there can be several reasons, why such a reuse is not possible. The most common one is the requirement for log backups. If you have your database set to recovery mode FULL, SQL Server does not reuse any part of the log file until it is backed up with a transaction log backup. There are several other reasons why SQL Server might have to wait before it can reuse the transaction log, ranging from long running open transactions to transactional replication.

    If you are in a situation that requires you to find out why the transaction log file keeps growing and growing, this simple query can give you the answer:

    1. SELECT name,log_reuse_wait_desc FROM sys.databases;

    The log_reuse_wait_desc column contains the reason why the SQL Server currently can't reuse the log file of that database. For an explanation of each of the eight reasons, check out my new article series here:

    ****************************************************************************************************************************************************************************************************************

    A while back I wrote a short article about the Transaction Log Reuse Wait. Because it turned out to be very popular, I decided to follow up on that article and give a little more detail about the reasons why your database log files keep taking up more and more space.

    SQL Server itself actually tells us what is going on with the log files in the log_reuse_wait_desccolumn of the sys.databases catalog view. So, if you have a particular database that has a log growth problem, you can just run this query to find out more:

    1. SELECT D.name,
    2. D.log_reuse_wait_desc
    3. FROM sys.databases AS D;

    However, this query just returns a keyword. To understand the cause of the different values of the log_reuse_wait_desc, we need to dig a little deeper.

    Log Records

    SQL Server uses the transaction log to guarantee the ACID properties, particularly the durability requirement. For every transaction, enough information to redo as well as undo that transaction it is written to the log file. Before any transaction can commit, SQL Server waits to get a confirmation from the hard drive that the log record was written successfully.

    The transaction log gives SQL Server enough information to redo the operations that made up the transaction, should the actual change not make it into the data files, for example because of a crash. Because SQL Server has this information secured in the log file, it does not need to wait for the changes themselves being written to the data files and can commit the transaction while the data page changes still reside only in memory.

    Every once in a while SQL Server will execute a checkpoint operation. During this operation data pages that were altered by previous or current transactions are written back to disk.

    As a side note, it is possible for data pages containing changes of open transaction to be written to disk during a checkpoint. However, SQL Server has enough information in the transaction log to undo those changes, should the need arise. To have this flexibility SQL Server stores both the redo and the undo information in the log.

    Log Reuse

    Once every change to any data page that was executed by a single transaction was successfully saved to disk, the log record for that transaction is not needed anymore and its space in the log file can be reused.

    To accommodate for reuse, SQL Server organizes the log files as a ring buffer of several containers called virtual log files. There is no direct way to influence their size and or number. SQL Server manages that automatically.

    The virtual log files keep track of all their transaction log records and note if they are still needed, for example in an open transaction. Once all log records within a virtual log file are not used anymore, the virtual log file itself is marked as ready for reuse, and SQL Server will overwrite it with new log records once it gets around to that place in the ring buffer. The process of marking one or more virtual log files as reusable is called log truncation.

    Log Reuse Wait

    The above section described the general behavior of log reuse. There can however be several reasons for a log record to still be required by SQL Server for (potential) future operations. With that its virtual log file cannot be reused. If that happens for an extended period of time, SQL Server might run out of virtual log files and has to add additional ones. For that the physical file has to grow. If autogrowth is enabled for the log file and there is enough room on the drive this will happen automatically. If automatic growth is not possible, the database becomes effectively read-only, causing all write attempts to fail until the situation has been resolved.

    The query shown at the beginning of this article allows us to find the most prevalent reason why virtual log files can't currently be reused. As of SQL Server 2012 it can return 10 different values:

    • NOTHING
    • CHECKPOINT
    • LOG_BACKUP
    • ACTIVE_BACKUP_OR_RESTORE
    • ACTIVE_TRANSACTION
    • DATABASE_MIRRORING
    • REPLICATION
    • DATABASE_SNAPSHOT_CREATION
    • LOG_SCAN
    • OTHER_TRANSIENT

    The first one, NOTHING, means that there are still free virtual log files available. The last one, OTHER_TRANSIENT, is currently not used. That leaves eight real reasons why your log file might be growing.

    Summary

    SQL Server transaction log files are organized as a ring buffer of log record containers called virtual log files. These virtual log files are reused as the file pointer loops around the ring buffer. However, there are eight reasons that can prevent the reuse of these virtual log files. If reuse is not possible for one of those reasons, the log file has to grow.

    Log Reuse Wait Series

    Over the next few days I am going to write in more detail about each of the eight log reuse wait reasons.
    Below is a list of links to the posts that are already available

    ****************************************************************************************************************************************************************************************************************

  • 相关阅读:
    20145326蔡馨熠《信息安全系统设计基础》第九周学习总结
    20145326蔡馨熠 《信息安全系统设计基础》实验一 开发环境的熟悉
    20145326蔡馨熠《信息安全系统设计基础》第八周学习总结
    20145326蔡馨熠《信息安全系统设计》第7周学习总结
    20145326蔡馨熠《信息安全系统设计》第6周学习总结
    20145326蔡馨熠《信息安全系统设计》第五周学习总结
    20145326蔡馨熠《信息安全系统设计基础》第三周学习总结
    20145326蔡馨熠《信息安全系统设计》第2周学习总结
    20145326蔡馨熤《信息安全系统设计基础》第1周学习总结
    2015324 《信息安全系统设计基础》第3周学习总结
  • 原文地址:https://www.cnblogs.com/roseHLF/p/9046053.html
Copyright © 2011-2022 走看看