WO2009002754A2 - Handling falsely doomed parents of nested transactions - Google Patents

Handling falsely doomed parents of nested transactions Download PDF

Info

Publication number
WO2009002754A2
WO2009002754A2 PCT/US2008/067145 US2008067145W WO2009002754A2 WO 2009002754 A2 WO2009002754 A2 WO 2009002754A2 US 2008067145 W US2008067145 W US 2008067145W WO 2009002754 A2 WO2009002754 A2 WO 2009002754A2
Authority
WO
WIPO (PCT)
Prior art keywords
transaction
nested
write
computer
parent
Prior art date
Application number
PCT/US2008/067145
Other languages
French (fr)
Other versions
WO2009002754A3 (en
Inventor
Michael M. Magruder
David Detlefs
John Joseph Duffy
Goetz Graefe
Vinod K. Grover
Original Assignee
Microsoft Corporation
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Microsoft Corporation filed Critical Microsoft Corporation
Priority to EP08771213.9A priority Critical patent/EP2176762B1/en
Priority to CN2008800224166A priority patent/CN101689138B/en
Priority to JP2010514967A priority patent/JP4923142B2/en
Publication of WO2009002754A2 publication Critical patent/WO2009002754A2/en
Publication of WO2009002754A3 publication Critical patent/WO2009002754A3/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/466Transaction processing
    • G06F9/467Transactional memory
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/23Updating
    • G06F16/2308Concurrency control
    • G06F16/2315Optimistic concurrency control
    • G06F16/2329Optimistic concurrency control using versioning
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/23Updating
    • G06F16/2308Concurrency control
    • G06F16/2336Pessimistic concurrency control approaches, e.g. locking or multiple versions without time stamps
    • G06F16/2343Locking methods, e.g. distributed locking or locking implementation details

Definitions

  • STM Software transactional memory
  • a transaction in the context of transactional memory is a piece of code that executes a series of reads and writes to shared memory.
  • STM is used as an alternative to traditional locking mechanisms. STM allows concurrent programs to be written more simply.
  • a transaction specifies a sequence of code that is supposed to execute as if it were executing in isolation. This illusion of isolation is achieved by fine-grained locking of objects, and by executing in a mode that allows the side-effects of the transaction to be rolled back if the transaction is discovered to be in conflict with some other transaction.
  • a data access is "transacted” if the code generated for that access has been modified to include support for these locking and rollback mechanisms.
  • STM systems support nested transactions, allowing efficient composition of different components authored using transactions.
  • a nested transaction is considered closed if it its effects are part of the same isolation boundary as its containing, or parent, transaction.
  • When a closed nested transaction commits its effects do not become visible to the rest of the system. Instead, its effects become part of the parent transaction, still in progress, and will become visible to the rest of the system only when the parent transaction finally commits.
  • STM systems that use in-place writes and optimistic reads use a version number associated with each lockable region of memory to indicate when changes are made to shared data.
  • a reading transaction will optimistically record the version number of the memory (object, cache line, etc.) but not otherwise lock the data.
  • the transaction may commit if the version number does not change over the life of the transaction.
  • Writing transactions increment the version number when releasing their write locks, either for commit or rollback.
  • the version number must be increased during rollback because the writing transaction temporarily updated data in-place. These updates are visible to the reading transaction, and it must be notified that it cannot commit, having potentially read inconsistent data.
  • Nested transactions that write data not yet written by the parent must increment version numbers on rollback just like non-nested (top-level) transactions. However, consider the case where a parent transaction optimistically reads a variable X and a nested child transaction writes to variable X for the first time.
  • the parent will record the version number of X in its log, say, version Vl.
  • the nested transaction will begin and acquire a write lock on X. If the nested transaction commits, then there are no problems: the write lock is not released and is transferred to the parent and the parent remains consistent, able to commit. However, if the nested transaction rolls back, for whatever reason, it must release the write lock and increment the version number for X to V2.
  • the parent will appear to be inconsistent at commit time.
  • the version of X is V2, but the parent read it at Vl and has no record of who changed the version number to V2. It appears that the parent has conflicted with another transaction, but in fact it was a nested child transaction that caused the version number increase, and this is not actually a conflict.
  • the parent has been doomed by its child's rollback operation. This problem causes STM systems to experience spurious re-executions of parent transactions.
  • Various technologies and techniques are disclosed for detecting falsely doomed parent transactions of nested children in transactional memory systems.
  • a release count is tracked each time that a write lock is released for a given nested transaction.
  • a write abort compensation map can be used to track the release count for each lock released for each nested transaction that rolls back. The number of times the nested transactions release a write lock is recorded in their respective write abort compensation map.
  • the release counts can be used during a validation of a parent transaction to determine if an apparently invalid optimistic read is really valid.
  • any write abort compensation maps seen for nested child transactions are aggregated into an aggregated write abort compensation map in the parent. If the optimistic read failed to validate due to a version number mismatch, then the aggregated write abort compensation map is consulted to retrieve a particular variable's write lock release count for the nested child transactions. If a difference in version numbers exactly matches the write lock release count for the nested child transactions, then the optimistic read is valid. [007]
  • Figure 1 is a diagrammatic view of a computer system of one implementation.
  • Figure 2 is a diagrammatic view of a transactional memory application of one implementation operating on the computer system of Figure 1.
  • Figure 3 is a high-level process flow diagram for one implementation of the system of Figure 1.
  • Figure 4 is a process flow diagram for one implementation of the system of Figure 1 illustrating the stages involved in creating and maintaining write abort compensation maps.
  • Figure 5 is a process flow diagram for one implementation of the system of Figure 1 illustrating the stages involved in aggregating write abort compensation maps during transaction rollback.
  • Figure 6 is a process flow diagram for one implementation of the system of Figure 1 illustrating the stages involved in using write abort compensation maps during transaction validation to avoid falsely dooming parents of nested transactions.
  • the technologies and techniques herein may be described in the general context as a transactional memory system, but the system also serves other purposes in addition to these.
  • one or more of the techniques described herein can be implemented as features within a framework program such as MICROSOFT® .NET Framework, or from any other type of program or service that provides platforms for developers to develop software applications.
  • one or more of the techniques described herein are implemented as features with other applications that deal with developing applications that execute in concurrent environments.
  • a transactional memory system allows the false dooming of parent transactions of nested child transactions to be detected and avoided.
  • the term “doomed” as used herein is meant to include transactions that will later be rolled back because they have performed one or more optimistic reads on one or more variables that have subsequently been written by other transactions. When attempting to commit such a transaction, the failed optimistic reads will cause the transaction to roll back and re-execute.
  • the term “falsely doomed” as used herein is meant to include any transaction that appears to be doomed due to a failed optimistic read, but that is actually not doomed because the optimistic read was actually valid due to operations performed by nested transactions.
  • nested transaction as used herein is meant to include any transaction whose effects are enclosed within the isolation boundary of another transaction.
  • the transaction that encloses the nested transaction is called the "parent" of the nested transaction, and the nested transaction is typically called the "child”.
  • the number of times each nested child releases a write lock is tracked in per-lock release counts. In one implementation, these counts are tracked in a write abort compensation map.
  • write abort compensation map as used herein is meant to include a data structure that stores the per-lock release counts for each lock that each nested child releases. Multiple write abort compensation maps can be aggregated into an aggregate map during transaction validation or roll back.
  • transactional memory word as used herein is meant to include a data structure provided for each transaction that tracks various information about the given transaction, such as lock status and version number.
  • the TMW can include a version number and a list/count and/or indicator of readers.
  • the list/count and/or indicator of readers can include a count of the number of readers accessing the particular value at a given point in time.
  • the list/count and/or indicator of readers can include a list of the particular readers (e.g. pessimistic) accessing the particular value at a given point in time.
  • the list/count and/or indicator of readers is simply a flag or other indicator to indicate that there are one or more readers accessing the particular value at a given point in time.
  • device 100 may also have additional features/functionality.
  • device 100 may also include additional storage (removable and/or non-removable) including, but not limited to, magnetic or optical disks or tape.
  • additional storage is illustrated in Figure 1 by removable storage 108 and nonremovable storage 110.
  • Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data.
  • Memory 104, removable storage 108 and nonremovable storage 110 are all examples of computer storage media.
  • Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can accessed by device 100. Any such computer storage media may be part of device 100.
  • Computing device 100 includes one or more communication connections 114 that allow computing device 100 to communicate with other computers/applications 115.
  • Device 100 may also have input device(s) 112 such as keyboard, mouse, pen, voice input device, touch input device, etc.
  • Output device(s) 111 such as a display, speakers, printer, etc. may also be included. These devices are well known in the art and need not be discussed at length here.
  • computing device 100 includes transactional memory application 200.
  • Transactional memory application 200 will be described in further detail in Figure 2. [020] Turning now to Figure 2 with continued reference to Figure 1 , a transactional memory application 200 operating on computing device 100 is illustrated.
  • Transactional memory application 200 is one of the application programs that reside on computing device 100.
  • transactional memory application 200 can alternatively or additionally be embodied as computer-executable instructions on one or more computers and/or in different variations than shown on Figure 1. Alternatively or additionally, one or more parts of transactional memory application 200 can be part of system memory 104, on other computers and/or applications 115, or other such variations as would occur to one in the computer software art. [021] Transactional memory application 200 includes program logic 204, which is responsible for carrying out some or all of the techniques described herein.
  • Program logic 204 includes logic for creating a write abort compensation map (WACM) when a nested transaction rolls back and releases a write lock for the first time 206 (as described below with respect to Figure 4); logic for recording in each entry in the WACM, the number of times a nested transaction released the write lock in a given transactional memory word 208 (as described below with respect to Figure 4); logic for holding WACM in parent's transaction log 210 (as described below with respect to Figure 4); logic for using and updating same WACM if a particular nested transaction re-executes and rolls back again 212 (as described below with respect to Figure 4); logic for aggregating WACM 'S as appropriate 214 (as described below with respect to Figure 5); logic for using WACM 's during transaction validation to determine if failed optimistic read is really valid or invalid 216 (as described below with respect to Figure 6); and other logic for operating the application 220.
  • WACM write abort compensation map
  • FIG. 3 is a high level process flow diagram for transactional memory application 200.
  • the process begins at start point 240. Any write lock released during nested transaction rollback has the potential to doom the parent transduction (stage 242). When rolling back a transaction, each time that a version number is increased is remembered (stage 244). The system tracks this information for each nested transaction that rolls back (stage 246).
  • FIG. 4 illustrates one implementation of the stages involved in creating and maintaining write abort compensation maps.
  • the process begins at start point 270 with creating a write abort compensation map (WACM) that is keyed by a unique lock identifier when a nested transaction rolls back and releases a write lock for the first time (stage 272).
  • WACM write abort compensation map
  • Each entry in the WACM records the number of times the nested transaction released a write lock on a given transactional memory word (stage 274).
  • the WACM is held in a parent transaction's log and is ordered after all optimistic reads made by the parent at the start of the nested transaction (stage 276). If a particular nested transaction re-executes and rolls back again, the system uses the same WACM and updates it with any new write lock release (stage 278). If the nested transaction acquires a lock again that it acquired on a previous execution, the count for that transactional memory word is incremented in the WACM (stage 280). The process ends at end point 282.
  • FIG. 5 illustrates one implementation of the stages involved in aggregating WACM 'S during transaction rollback.
  • the process begins at start point 290 with a nested transaction that was also the parent of many nested children over time possibly having multiple WACM's dispersed throughout its log (stage 292). If multiple WACM'S are encountered during transaction rollback, then all WACM'S due to the nested children are aggregated into a single WACM and placed in the parent's log (stage 294). The process ends at end point 296.
  • Figure 6 illustrates one implementation of the stages involved in using WACM'S during transaction validation to avoid falsely dooming parents of nested transactions.
  • the process begins at start point 310 with aggregating any WACM seen as optimistic read entries are processed into a temporary WACM for the validation process while processing the parent's log in reverse (stage 312). If the optimistic read failed to validate due to a version number mismatch (decision point 314), then the temporary WACM is consulted, using the TWM address as a key (stage 316). If there is a matching entry on that TMW address (decision point 318), then the system calculates whether the count associated with the entry matches the difference in the version number exactly (decision point 320). If the count matches the difference in the version number exactly (decision point 320), then the optimistic read is valid and the difference was due solely to re-executing the nested children (stage 322).

Abstract

[029] Various technologies and techniques are disclosed for detecting falsely doomed parent transactions of nested children in transactional memory systems. When rolling back nested transactions, a release count is tracked each time that a write lock is released due to rollback for a given nested transaction. For example, a write abort compensation map can be used to track the release count for each nested transaction. The number of times the nested transactions releases a write lock is recorded in their respective write abort compensation map. The release counts can be used during a validation of a parent transaction to determine if a failed optimistic read is really valid. If an aggregated release count for the nested children transactions accounts for the difference in version numbers exactly, then the optimistic read is valid.

Description

HANDLING FALSELY DOOMED PARENTS
OF NESTED TRANSACTIONS
BACKGROUND
[001] Software transactional memory (STM) is a concurrency control mechanism analogous to database transactions for controlling access to shared memory in concurrent computing. A transaction in the context of transactional memory is a piece of code that executes a series of reads and writes to shared memory. STM is used as an alternative to traditional locking mechanisms. STM allows concurrent programs to be written more simply. A transaction specifies a sequence of code that is supposed to execute as if it were executing in isolation. This illusion of isolation is achieved by fine-grained locking of objects, and by executing in a mode that allows the side-effects of the transaction to be rolled back if the transaction is discovered to be in conflict with some other transaction. We say that a data access is "transacted" if the code generated for that access has been modified to include support for these locking and rollback mechanisms.
[002] Many STM systems support nested transactions, allowing efficient composition of different components authored using transactions. A nested transaction is considered closed if it its effects are part of the same isolation boundary as its containing, or parent, transaction. When a closed nested transaction commits, its effects do not become visible to the rest of the system. Instead, its effects become part of the parent transaction, still in progress, and will become visible to the rest of the system only when the parent transaction finally commits. When a nested transaction rolls back, its temporary effects are undone and the state of the parent transaction is restored to the point that the nested transaction began. [003] STM systems that use in-place writes and optimistic reads use a version number associated with each lockable region of memory to indicate when changes are made to shared data. A reading transaction will optimistically record the version number of the memory (object, cache line, etc.) but not otherwise lock the data. The transaction may commit if the version number does not change over the life of the transaction. Writing transactions increment the version number when releasing their write locks, either for commit or rollback. The version number must be increased during rollback because the writing transaction temporarily updated data in-place. These updates are visible to the reading transaction, and it must be notified that it cannot commit, having potentially read inconsistent data. [004] Nested transactions that write data not yet written by the parent must increment version numbers on rollback just like non-nested (top-level) transactions. However, consider the case where a parent transaction optimistically reads a variable X and a nested child transaction writes to variable X for the first time. The parent will record the version number of X in its log, say, version Vl. The nested transaction will begin and acquire a write lock on X. If the nested transaction commits, then there are no problems: the write lock is not released and is transferred to the parent and the parent remains consistent, able to commit. However, if the nested transaction rolls back, for whatever reason, it must release the write lock and increment the version number for X to V2. The parent will appear to be inconsistent at commit time. The version of X is V2, but the parent read it at Vl and has no record of who changed the version number to V2. It appears that the parent has conflicted with another transaction, but in fact it was a nested child transaction that caused the version number increase, and this is not actually a conflict. The parent has been doomed by its child's rollback operation. This problem causes STM systems to experience spurious re-executions of parent transactions.
SUMMARY
[005] Various technologies and techniques are disclosed for detecting falsely doomed parent transactions of nested children in transactional memory systems. When rolling back nested transactions, a release count is tracked each time that a write lock is released for a given nested transaction. For example, a write abort compensation map can be used to track the release count for each lock released for each nested transaction that rolls back. The number of times the nested transactions release a write lock is recorded in their respective write abort compensation map. The release counts can be used during a validation of a parent transaction to determine if an apparently invalid optimistic read is really valid. [006] In one implementation, while processing a parent transaction log, any write abort compensation maps seen for nested child transactions are aggregated into an aggregated write abort compensation map in the parent. If the optimistic read failed to validate due to a version number mismatch, then the aggregated write abort compensation map is consulted to retrieve a particular variable's write lock release count for the nested child transactions. If a difference in version numbers exactly matches the write lock release count for the nested child transactions, then the optimistic read is valid. [007] This Summary was provided to introduce a selection of concepts in a simplified form that are further described below in the Detailed Description. This Summary is not intended to identify key features or essential features of the claimed subject matter, nor is it intended to be used as an aid in determining the scope of the claimed subject matter.
BRIEF DESCRIPTION OF THE DRAWINGS [008] Figure 1 is a diagrammatic view of a computer system of one implementation.
[009] Figure 2 is a diagrammatic view of a transactional memory application of one implementation operating on the computer system of Figure 1. [010] Figure 3 is a high-level process flow diagram for one implementation of the system of Figure 1.
[011] Figure 4 is a process flow diagram for one implementation of the system of Figure 1 illustrating the stages involved in creating and maintaining write abort compensation maps. [012] Figure 5 is a process flow diagram for one implementation of the system of Figure 1 illustrating the stages involved in aggregating write abort compensation maps during transaction rollback.
[013] Figure 6 is a process flow diagram for one implementation of the system of Figure 1 illustrating the stages involved in using write abort compensation maps during transaction validation to avoid falsely dooming parents of nested transactions. DETAILED DESCRIPTION
[014] The technologies and techniques herein may be described in the general context as a transactional memory system, but the system also serves other purposes in addition to these. In one implementation, one or more of the techniques described herein can be implemented as features within a framework program such as MICROSOFT® .NET Framework, or from any other type of program or service that provides platforms for developers to develop software applications. In another implementation, one or more of the techniques described herein are implemented as features with other applications that deal with developing applications that execute in concurrent environments.
[015] In one implementation, a transactional memory system is provided that allows the false dooming of parent transactions of nested child transactions to be detected and avoided. The term "doomed" as used herein is meant to include transactions that will later be rolled back because they have performed one or more optimistic reads on one or more variables that have subsequently been written by other transactions. When attempting to commit such a transaction, the failed optimistic reads will cause the transaction to roll back and re-execute. The term "falsely doomed" as used herein is meant to include any transaction that appears to be doomed due to a failed optimistic read, but that is actually not doomed because the optimistic read was actually valid due to operations performed by nested transactions. The term "nested transaction" as used herein is meant to include any transaction whose effects are enclosed within the isolation boundary of another transaction. The transaction that encloses the nested transaction is called the "parent" of the nested transaction, and the nested transaction is typically called the "child". The number of times each nested child releases a write lock is tracked in per-lock release counts. In one implementation, these counts are tracked in a write abort compensation map. The term "write abort compensation map" as used herein is meant to include a data structure that stores the per-lock release counts for each lock that each nested child releases. Multiple write abort compensation maps can be aggregated into an aggregate map during transaction validation or roll back. [016] When validating a parent transaction, if an optimistic read fails validation, then the current aggregate write abort compensation map is consulted to see if the difference in version numbers in a transactional memory word exactly matches the aggregate release count of the nested child transactions for that object or memory region. If so, then the optimistic read is actually valid and the parent should not be falsely doomed. The term transactional memory word as used herein is meant to include a data structure provided for each transaction that tracks various information about the given transaction, such as lock status and version number. For example, the TMW can include a version number and a list/count and/or indicator of readers. In one implementation, the list/count and/or indicator of readers can include a count of the number of readers accessing the particular value at a given point in time. In another implementation, the list/count and/or indicator of readers can include a list of the particular readers (e.g. pessimistic) accessing the particular value at a given point in time. In yet another implementation, the list/count and/or indicator of readers is simply a flag or other indicator to indicate that there are one or more readers accessing the particular value at a given point in time. These are just examples, and the use of the term TMW herein is meant to cover a variety of mechanisms for tracking transaction statuses. [017] As shown in Figure 1, an exemplary computer system to use for implementing one or more parts of the system includes a computing device, such as computing device 100. In its most basic configuration, computing device 100 typically includes at least one processing unit 102 and memory 104. Depending on the exact configuration and type of computing device, memory 104 may be volatile (such as RAM), non- volatile (such as ROM, flash memory, etc.) or some combination of the two. This most basic configuration is illustrated in Figure 1 by dashed line 106.
[018] Additionally, device 100 may also have additional features/functionality. For example, device 100 may also include additional storage (removable and/or non-removable) including, but not limited to, magnetic or optical disks or tape. Such additional storage is illustrated in Figure 1 by removable storage 108 and nonremovable storage 110. Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data. Memory 104, removable storage 108 and nonremovable storage 110 are all examples of computer storage media. Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can accessed by device 100. Any such computer storage media may be part of device 100.
[019] Computing device 100 includes one or more communication connections 114 that allow computing device 100 to communicate with other computers/applications 115. Device 100 may also have input device(s) 112 such as keyboard, mouse, pen, voice input device, touch input device, etc. Output device(s) 111 such as a display, speakers, printer, etc. may also be included. These devices are well known in the art and need not be discussed at length here. In one implementation, computing device 100 includes transactional memory application 200. Transactional memory application 200 will be described in further detail in Figure 2. [020] Turning now to Figure 2 with continued reference to Figure 1 , a transactional memory application 200 operating on computing device 100 is illustrated. Transactional memory application 200 is one of the application programs that reside on computing device 100. However, it will be understood that transactional memory application 200 can alternatively or additionally be embodied as computer-executable instructions on one or more computers and/or in different variations than shown on Figure 1. Alternatively or additionally, one or more parts of transactional memory application 200 can be part of system memory 104, on other computers and/or applications 115, or other such variations as would occur to one in the computer software art. [021] Transactional memory application 200 includes program logic 204, which is responsible for carrying out some or all of the techniques described herein. Program logic 204 includes logic for creating a write abort compensation map (WACM) when a nested transaction rolls back and releases a write lock for the first time 206 (as described below with respect to Figure 4); logic for recording in each entry in the WACM, the number of times a nested transaction released the write lock in a given transactional memory word 208 (as described below with respect to Figure 4); logic for holding WACM in parent's transaction log 210 (as described below with respect to Figure 4); logic for using and updating same WACM if a particular nested transaction re-executes and rolls back again 212 (as described below with respect to Figure 4); logic for aggregating WACM 'S as appropriate 214 (as described below with respect to Figure 5); logic for using WACM 's during transaction validation to determine if failed optimistic read is really valid or invalid 216 (as described below with respect to Figure 6); and other logic for operating the application 220. [022] Turning now to Figures 3-6 with continued reference to Figures 1-2, the stages for implementing one or more implementations of transactional memory application 200 are described in further detail. In some implementations, the processes of Figures 3-6 are at least partially implemented in the operating logic of computing device 100. Figure 3 is a high level process flow diagram for transactional memory application 200. The process begins at start point 240. Any write lock released during nested transaction rollback has the potential to doom the parent transduction (stage 242). When rolling back a transaction, each time that a version number is increased is remembered (stage 244). The system tracks this information for each nested transaction that rolls back (stage 246). During transaction validation, the system uses this information to determine whether a particular optimistic read that failed validation is actually valid because the difference was due to re-execution nested children (stage 248). These stages are described in further detail in Figures 4-6. The process ends at end point 250. [023] Figure 4 illustrates one implementation of the stages involved in creating and maintaining write abort compensation maps. The process begins at start point 270 with creating a write abort compensation map (WACM) that is keyed by a unique lock identifier when a nested transaction rolls back and releases a write lock for the first time (stage 272). Each entry in the WACM records the number of times the nested transaction released a write lock on a given transactional memory word (stage 274).
[024] The WACM is held in a parent transaction's log and is ordered after all optimistic reads made by the parent at the start of the nested transaction (stage 276). If a particular nested transaction re-executes and rolls back again, the system uses the same WACM and updates it with any new write lock release (stage 278). If the nested transaction acquires a lock again that it acquired on a previous execution, the count for that transactional memory word is incremented in the WACM (stage 280). The process ends at end point 282.
[025] Figure 5 illustrates one implementation of the stages involved in aggregating WACM 'S during transaction rollback. The process begins at start point 290 with a nested transaction that was also the parent of many nested children over time possibly having multiple WACM's dispersed throughout its log (stage 292). If multiple WACM'S are encountered during transaction rollback, then all WACM'S due to the nested children are aggregated into a single WACM and placed in the parent's log (stage 294). The process ends at end point 296. [026] Figure 6 illustrates one implementation of the stages involved in using WACM'S during transaction validation to avoid falsely dooming parents of nested transactions. The process begins at start point 310 with aggregating any WACM seen as optimistic read entries are processed into a temporary WACM for the validation process while processing the parent's log in reverse (stage 312). If the optimistic read failed to validate due to a version number mismatch (decision point 314), then the temporary WACM is consulted, using the TWM address as a key (stage 316). If there is a matching entry on that TMW address (decision point 318), then the system calculates whether the count associated with the entry matches the difference in the version number exactly (decision point 320). If the count matches the difference in the version number exactly (decision point 320), then the optimistic read is valid and the difference was due solely to re-executing the nested children (stage 322). If not, then the optimistic read is invalid and is due to commit/rollback of the other transactions (stage 324). The stages are repeated for the entire parent log (decision point 326). The process ends at end point 328. [027] Although the subject matter has been described in language specific to structural features and/or methodological acts, it is to be understood that the subject matter defined in the appended claims is not necessarily limited to the specific features or acts described above. Rather, the specific features and acts described above are disclosed as example forms of implementing the claims. All equivalents, changes, and modifications that come within the spirit of the implementations as described herein and/or by the following claims are desired to be protected. [028] For example, a person of ordinary skill in the computer software art will recognize that the examples discussed herein could be organized differently on one or more computers to include fewer or additional options or features than as portrayed in the examples.

Claims

What is claimed is:
1. A method for avoiding falsely doomed parent transactions of nested children in a transactional memory system comprising the steps of: when rolling back nested transactions, tracking a release count each time that a write lock is released (206) ; and during validation of a parent transaction, using the release count to determine whether an optimistic read that failed validation is actually valid (216).
2. The method of claim 1 , wherein the failed validation is actually valid if a difference in version numbers exactly matches the release count (320).
3. The method of claim 1 , wherein the release count is tracked in a write abort compensation map (274).
4. The method of claim 3, wherein the write abort compensation map is created for each of the nested transactions (272).
5. The method of claim 4, wherein the write abort compensation map is created for a respective one of the nested transactions when the respective one first rolls back and releases a write lock (272).
6. The method of claim 4, wherein the write abort compensation map for each of the nested transactions are aggregated into an aggregate write abort compensation map (312).
7. The method of claim 6, wherein the aggregate write abort compensation map is used while processing a transaction log of the parent transaction to determine if the optimistic read that failed is really valid (312).
8. The method of claim 7, wherein the transaction log of the parent is processed in a reverse order (312).
9. A computer-readable medium having computer-executable instructions for causing a computer to perform the steps recited in claim 1 (200).
10. A computer-readable medium having computer-executable instructions for causing a computer to perform steps comprising: creating a write abort compensation map for a nested transaction (206); recording in the write abort compensation map a number of times the nested transaction releases a write lock (208); and using the write abort compensation map during a validation of a parent transaction to determine if a failed optimistic read is really valid (216).
11. The computer-readable medium of claim 10, wherein the write abort compensation map is created when the nested transaction rolls back and releases a write lock for a first time (272).
12. The computer-readable medium of claim 10, wherein the failed optimistic read is really valid if a difference in version numbers exactly matches the number of times the nested transaction released the write lock (320).
13. The computer-readable medium of claim 10, wherein the write abort compensation map is held in transaction log of the parent transaction (276).
14. The computer-readable medium of claim 13, wherein the write abort compensation map is ordered after all optimistic reads made by the parent transaction at a start of the nested transaction (276).
15. The computer-readable medium of claim 10, wherein the write abort compensation map is aggregated with other write abort compensation maps encountered for other nested children to form an aggregated write abort compensation map during parent transaction rollback (294).
16. The computer-readable medium of claim 15, wherein the aggregated write abort compensation map is placed in a transaction log of the parent transaction (294).
17. The computer-readable medium of claim 16, wherein the aggregated write abort compensation map is placed in the transaction log of the parent transaction when processing the transaction log of the parent in a reverse order (312).
18. A method for using write abort compensation maps during transaction validation to avoid falsely dooming parents of nested transactions comprising the steps of: while processing a parent log, aggregating any write abort compensation maps seen in nested child transactions into an aggregated write abort compensation map (312); if an optimistic read failed to validate due to a version number mismatch (314), then consulting the aggregated write abort compensation map to retrieve a write lock release count for the nested child transactions (316); and if a difference in version numbers exactly matches the write lock release count for the nested child transactions (320), then the optimistic read is valid (322).
19. The method of claim 18, wherein if the difference in version numbers does not exactly match the write release count for the nested child transactions, then the optimistic read is invalid (324).
20. A computer-readable medium having computer-executable instructions for causing a computer to perform the steps recited in claim 18 (200).
PCT/US2008/067145 2007-06-27 2008-06-16 Handling falsely doomed parents of nested transactions WO2009002754A2 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
EP08771213.9A EP2176762B1 (en) 2007-06-27 2008-06-16 Handling falsely doomed parents of nested transactions
CN2008800224166A CN101689138B (en) 2007-06-27 2008-06-16 Handling falsely doomed parents of nested transactions
JP2010514967A JP4923142B2 (en) 2007-06-27 2008-06-16 Dealing with incorrect parent transaction failures

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US11/823,162 US7899999B2 (en) 2007-06-27 2007-06-27 Handling falsely doomed parents of nested transactions
US11/823,162 2007-06-27

Publications (2)

Publication Number Publication Date
WO2009002754A2 true WO2009002754A2 (en) 2008-12-31
WO2009002754A3 WO2009002754A3 (en) 2009-02-19

Family

ID=40161865

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2008/067145 WO2009002754A2 (en) 2007-06-27 2008-06-16 Handling falsely doomed parents of nested transactions

Country Status (6)

Country Link
US (1) US7899999B2 (en)
EP (1) EP2176762B1 (en)
JP (1) JP4923142B2 (en)
CN (1) CN101689138B (en)
TW (1) TWI363299B (en)
WO (1) WO2009002754A2 (en)

Families Citing this family (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7890472B2 (en) * 2007-09-18 2011-02-15 Microsoft Corporation Parallel nested transactions in transactional memory
US8719515B2 (en) 2010-06-21 2014-05-06 Microsoft Corporation Composition of locks in software transactional memory
US9411634B2 (en) 2010-06-21 2016-08-09 Microsoft Technology Licensing, Llc Action framework in software transactional memory
US10073844B1 (en) * 2010-11-24 2018-09-11 Federal Home Loan Mortgage Corporation (Freddie Mac) Accelerated system and method for providing data correction
US20140281236A1 (en) * 2013-03-14 2014-09-18 William C. Rash Systems and methods for implementing transactional memory
US10284649B2 (en) * 2013-05-31 2019-05-07 Nec Corporation Distributed processing system
US20150370409A1 (en) * 2014-06-18 2015-12-24 International Business Machines Corporation Disambiguation of touch-based gestures
US10503698B2 (en) 2014-07-31 2019-12-10 Splunk Inc. Configuration replication in a search head cluster
US10152237B2 (en) 2016-05-05 2018-12-11 Micron Technology, Inc. Non-deterministic memory protocol
US10534540B2 (en) 2016-06-06 2020-01-14 Micron Technology, Inc. Memory protocol
US10635613B2 (en) 2017-04-11 2020-04-28 Micron Technology, Inc. Transaction identification
CN110347533A (en) * 2019-07-11 2019-10-18 中国工商银行股份有限公司 The processing method of data exception, calculates equipment and medium at device

Family Cites Families (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5701480A (en) * 1991-10-17 1997-12-23 Digital Equipment Corporation Distributed multi-version commitment ordering protocols for guaranteeing serializability during transaction processing
US5241675A (en) * 1992-04-09 1993-08-31 Bell Communications Research, Inc. Method for enforcing the serialization of global multidatabase transactions through committing only on consistent subtransaction serialization by the local database managers
US5335343A (en) * 1992-07-06 1994-08-02 Digital Equipment Corporation Distributed transaction processing using two-phase commit protocol with presumed-commit without log force
JP3672208B2 (en) * 1996-07-02 2005-07-20 インターナショナル・ビジネス・マシーンズ・コーポレーション Hierarchical transaction processing method
EP0990214A2 (en) * 1998-01-26 2000-04-05 Telenor AS Database management system and method for conditional conflict serializaility of transactions and for combining meta-data of varying degrees of reliability
US6298478B1 (en) * 1998-12-31 2001-10-02 International Business Machines Corporation Technique for managing enterprise JavaBeans (™) which are the target of multiple concurrent and/or nested transactions
JP2004505380A (en) * 2000-07-28 2004-02-19 キシムフォニック システムズ エーエス Methods, systems and data structures for implementing nested databases
US6671686B2 (en) * 2000-11-02 2003-12-30 Guy Pardon Decentralized, distributed internet data management
US6850938B1 (en) * 2001-02-08 2005-02-01 Cisco Technology, Inc. Method and apparatus providing optimistic locking of shared computer resources
JP3732113B2 (en) * 2001-05-14 2006-01-05 株式会社八十二銀行 Transaction control system, method and program
GB0130399D0 (en) * 2001-12-19 2002-02-06 Ibm Message ordering in a messaging system
US6754737B2 (en) * 2001-12-24 2004-06-22 Hewlett-Packard Development Company, L.P. Method and apparatus to allow dynamic variation of ordering enforcement between transactions in a strongly ordered computer interconnect
US6785779B2 (en) * 2002-01-09 2004-08-31 International Business Machines Company Multi-level classification method for transaction address conflicts for ensuring efficient ordering in a two-level snoopy cache architecture
US8244990B2 (en) * 2002-07-16 2012-08-14 Oracle America, Inc. Obstruction-free synchronization for shared data structures
US7076508B2 (en) * 2002-08-12 2006-07-11 International Business Machines Corporation Method, system, and program for merging log entries from multiple recovery log files
US7089253B2 (en) * 2002-09-13 2006-08-08 Netezza Corporation Computer method and system for concurrency control using dynamic serialization ordering
JP2004157776A (en) * 2002-11-06 2004-06-03 Nec Corp Processing method for application and system
US6898685B2 (en) * 2003-03-25 2005-05-24 Emc Corporation Ordering data writes from a local storage device to a remote storage device
US7376675B2 (en) * 2005-02-18 2008-05-20 International Business Machines Corporation Simulating multi-user activity while maintaining original linear request order for asynchronous transactional events
US20070186056A1 (en) * 2006-02-07 2007-08-09 Bratin Saha Hardware acceleration for a software transactional memory system
US8099538B2 (en) * 2006-03-29 2012-01-17 Intel Corporation Increasing functionality of a reader-writer lock
US7434010B2 (en) * 2006-08-04 2008-10-07 Microsoft Corporation Combined pessimistic and optimisitic concurrency control

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
See also references of EP2176762A4
Y. NI ET AL.: "Open nesting in software transactional memory", PPOPP'07, March 2007 (2007-03-01), pages 68 - 78

Also Published As

Publication number Publication date
US20090006404A1 (en) 2009-01-01
CN101689138B (en) 2012-07-18
EP2176762B1 (en) 2020-03-18
US7899999B2 (en) 2011-03-01
EP2176762A2 (en) 2010-04-21
WO2009002754A3 (en) 2009-02-19
TW200907816A (en) 2009-02-16
TWI363299B (en) 2012-05-01
EP2176762A4 (en) 2012-10-10
JP2010532052A (en) 2010-09-30
CN101689138A (en) 2010-03-31
JP4923142B2 (en) 2012-04-25

Similar Documents

Publication Publication Date Title
US7899999B2 (en) Handling falsely doomed parents of nested transactions
US7890472B2 (en) Parallel nested transactions in transactional memory
US7962456B2 (en) Parallel nested transactions in transactional memory
US7840530B2 (en) Parallel nested transactions in transactional memory
EP2150900B1 (en) Transactional memory using buffered writes and enforced serialization order
EP0457473B1 (en) Method for accessing shared data
US9805088B2 (en) Constraint-based consistency with snapshot isolation
JP5270268B2 (en) Computer system for allowing exclusive access to shared data, method and computer-readable recording medium
US8108627B2 (en) Array comparison and swap operations
WO2008018963A1 (en) Combined pessimistic and optimistic concurrency control
US7890707B2 (en) Efficient retry for transactional memory
EP2174224A1 (en) Exception ordering in contention management to support speculative sequential semantics
US20100228927A1 (en) Stm with multiple global version counters
Kuhn et al. Concurrency and Multiversioning

Legal Events

Date Code Title Description
WWE Wipo information: entry into national phase

Ref document number: 200880022416.6

Country of ref document: CN

121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 08771213

Country of ref document: EP

Kind code of ref document: A2

WWE Wipo information: entry into national phase

Ref document number: 2010514967

Country of ref document: JP

NENP Non-entry into the national phase

Ref country code: DE

WWE Wipo information: entry into national phase

Ref document number: 2008771213

Country of ref document: EP