Affinity-based recovery/failover in a cluster environment

Information

  • Patent Grant
  • 7814065
  • Patent Number
    7,814,065
  • Date Filed
    Tuesday, August 16, 2005
    18 years ago
  • Date Issued
    Tuesday, October 12, 2010
    13 years ago
Abstract
Techniques are provided for responding to the termination of a node by selecting another node, and assigning to the selected node the affinity relationships that existed between the terminated node and one or more objects. The resources that belong to the objects involved in the affinity relationships are remastered to the selected node. The selected node then performs recovery of the resources that had been opened by the terminated node and/or serves as a failover node to execute the transactions that had been executing on the terminated node.
Description
RELATED APPLICATIONS

The present application is related to the following U.S. patent applications, which are collectively referred to herein as the (“Related Applications”):


U.S. patent application Ser. No. 11/132,811, now issued U.S. Patent 7,493,400, entitled “Creating And Dissolving Affinity Relationships in a Cluster”, filed by Juan R. Loaiza, Neil James Scott Macnaughton, and Sashikanth Chandrasekaran, on same day herewith, the contents of which are incorporated herein by this reference; and


U.S. patent application Ser. No. 11/132,807, entitled “Determining Affinity in a Cluster”, filed by Neil James Scott Macnaughton and Sashikanth Chandrasekaran, on same day herewith, the contents of which are incorporated herein by this reference.


FIELD OF THE INVENTION

The present invention relates to database systems and, more specifically, to techniques for performing recover/failover operations in database systems where objects are mastered based on affinity to nodes.


BACKGROUND

Within the context of computer systems, many types of resources can be shared among processes. However, many resources, though sharable, may not be accessed in certain ways by more than one process at any given time. For example, resources such as data blocks of a storage medium or tables stored on a storage medium may be concurrently accessed in some ways (e.g. read) by multiple processes, but accessed in other ways (e.g. written to) by only one process at a time. Consequently, mechanisms have been developed which control access to resources.


One such mechanism is referred to as a lock. A lock is a data structure that indicates that a particular process has been granted certain rights with respect to a resource. There are many types of locks. Some types of locks may be shared on the same resource by many processes, while other types of locks prevent any other locks from being granted on the same resource.


The entity responsible for granting locks on resources is referred to as a lock manager. In a single node database system, a lock manager will typically consist of one or more processes on the node. In a multiple-node system, such as a multi-processing machine or a local area network, a lock manager may include processes distributed over numerous nodes. A lock manager that includes components that reside on two or more nodes is referred to as a distributed lock manager.



FIG. 1 is a block diagram of a multiple-node computer system 100. Each node has stored therein a database server and a portion of a distributed lock management system 132. Specifically, the illustrated system includes three nodes 102, 112 and 122 on which reside database servers 104, 114 and 124, respectively, and lock manager units 106, 116 and 126, respectively. Database servers 104, 114 and 124 have access to the same. database 120. The database 120 resides on a disk 118 that contains multiple blocks of data. Disk 118 generally represents one or more persistent storage devices which may be on any number of machines, including but not limited to the machines that contain nodes 102, 112 and 122.


A communication mechanism allows processes on nodes 102, 112, and 122 to communicate with each other and with the disks that contain portions of database 120. The specific communication mechanism between the nodes and disk 118 will vary based on the nature of system 100. For example, if the nodes 102, 112 and 122 correspond to workstations on a network, the communication mechanism will be different than if the nodes 102, 112 and 122 correspond to clusters of processors and memory within a multi-processing machine.


Before any of database servers 104, 114 and 124 can access a resource shared with the other database servers, it must obtain the appropriate lock on the resource from the distributed lock management system 132. Such a resource may be, for example, one or more blocks of disk 118 on which data from database 120 is stored.


Lock management system 132 stores data structures that indicate the locks held by database servers 104, 114 and 124 on the resources shared by the database servers. If one database server requests a lock on a resource while another database server has a lock on the resource, then the distributed lock management system 132 must determine whether the requested lock is consistent with the granted lock. If the requested lock is not consistent with the granted lock, then the requester must wait until the database server holding the granted lock releases the granted lock.


According to one approach, lock management system 132 maintains one master resource object for every resource managed by lock management system 132, and includes one lock manager unit for each node that contains a database server. The master resource object for a particular resource stores, among other things, an indication of all locks that have been granted on or requested for the particular resource. The master resource object for each resource resides within only one of the lock manager units 106, 116 and 126.


The node on which a lock manager unit resides is referred to as the “master node” (or simply “master”) of the resources whose master resource objects are managed by that lock manager unit. Thus, if the master resource object for a resource R1 is managed by lock manager unit 106, then node 102 is the master of resource R1.


In typical systems, a hash function is employed to select the particular node that acts as the master node for a given resource. For example, system 100 includes three nodes, and therefore may employ a hash function that produces three values: 0, 1 and 2. Each value is associated with one of the three nodes. The node that will serve as the master for a particular resource in system 100 is determined by applying the hash function to the name of the resource. All resources that have names that hash to 0 are mastered on node 102. All resources that have names that hash to 1 are mastered on node 112. All resources that have names that hash to 2 are mastered on node 122.


When a process on a node wishes to access a resource, a hash function is applied to the name of the resource to determine the master of the resource, and a lock request is sent to the master node for that resource. The lock manager on the master node for the resource controls the allocation and deallocation of locks for the associated resource.


While the hashing technique described above tends to distribute the resource mastering responsibility evenly among existing nodes, it has some significant drawbacks. For example, it is sometimes desirable to be able to select the exact node that will function as master node to a lock resource. For example, consider the situation when a particular lock resource is to be accessed exclusively by processes residing on node 102. In this situation, it would be inefficient to have the lock resource and the request queue for that resource located on any node in the network other than node 102. However, the relatively random distribution of lock resource management responsibilities that results from the hash function assignment technique makes it unlikely that resources will be mastered at the most efficient locations.


To address the inefficiency associated with the randomness of assigning masters based on a hash function, techniques have been developed for establishing resource-to-master-node assignments based on the affinity between (1) nodes and (2) the objects to which the resources belong. In this context, an “object” may be any entity that includes resources that are protected by locks. The types of objects to which the techniques described herein may be applied may vary based on the type of system in which the techniques are used. For example, within a relational database system, “objects” could include tables, table partitions, segments, extents, indexes, Large Objects (LOBs), etc. Within a file system, “objects” could include files, sets of file system metadata, etc. Within a storage system, “objects” could include storage devices, disk sectors, etc.


The “affinity” between a node and an object refers to the degree of efficiency achieved by assigning the node to be the master of the resources that belong to the object. For example, a particular node that accesses a table much more frequently than any other node has a high degree of affinity to the table. Relative to that table, the degree of affinity for that particular node is high because, if that node is assigned to be the master of the resources within the table, a high number of inter-node lock-related communications would be avoided. On the other hand, a node that accesses a table much less frequently than other nodes has a low degree of affinity to the table, because assigning that node to be the master of the table would avoid few inter-node lock-related communications.


The Related Applications describe various techniques related to mastering resources based on the affinity between nodes and the objects to which the resources belong. In general, once an affinity relationship has been established between an object and a node, the resources for the object cease to be randomly mastered across the nodes in the system. Instead, the node becomes master for all of the resources that belong to the object. On the other hand, when an affinity relationship is dissolved, the resources of the object are no longer mastered by the node with whom they had the affinity relationship. Instead, the resources are remastered across the nodes in the system.


The approaches described in this section are approaches that could be pursued, but not necessarily approaches that have been previously conceived or pursued. Therefore, unless otherwise indicated, it should not be assumed that any of the approaches described in this section qualify as prior art merely by virtue of their inclusion in this section.





BRIEF DESCRIPTION OF THE DRAWINGS

The present invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings and in which like reference numerals refer to similar elements and in which:



FIG. 1 is a block diagram of a computer system having a distributed lock manager;



FIG. 2 is a block diagram that illustrates steps for responding to termination of a node, according to an embodiment of the invention; and



FIG. 3 is a block diagram of a computer system upon which embodiments of the invention may be implemented.





DETAILED DESCRIPTION

In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, that the present invention may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to avoid unnecessarily obscuring the present invention.


Node Termination

A node may terminate for any number of reasons. For example, termination of a node may result from a hardware or software error. In addition, a node may be intentionally taken off line to be repaired or moved. When a node terminates for any reason, certain tasks have to be performed to ensure that the cluster to which the node belonged continues to operate correctly and efficiently. Typically, those tasks include (1) remastering resources that were mastered at the terminated node, (2) migrating transactions that were executing on the terminated node, and (3) recovering the resources that had been opened by the terminated node. Each of these tasks shall now be described in greater detail.


Remastering Resources that were Mastered at a Terminated Node

When a node fails, the resources that were mastered by that node have to be remastered by the remaining nodes. The resources that were mastered by a terminated node are referred to herein as the “to-be-remastered resources”.


In systems that use affinity-based assignment mechanisms, the failure of a node in an affinity relationship may be an event that leads to the dissolution of the affinity relationship. Specifically, when a node in a cluster fails, any affinity relationships involving the node may be dissolved. After the affinity relationships of the terminated node are dissolved, none of the to-be-remastered resources will belong to an object that is in an affinity relationship. Since none of the to-be-remastered resources belong to objects that have affinity relationships with any of the remaining nodes, all of the to-be-remastered resources are randomly remastered across the remaining node using a hash function.


Migrating Transactions of a Terminated Node

In addition to remastering the to-be-remastered resources of a terminated node, the failure of the node may also result in a failover operation, where transactions that were being handled by the terminated node at the time of the failure are transferred to one or more of the remaining nodes. Automatic failover techniques are described, for example, in U.S. Pat. No. 6,490,610, entitled “Automatic Failover for Clients Accessing a Resource Through a Server”, issued to Rizvi et al. on May 30, 1997, the contents of which are incorporated herein by reference. Planned failover techniques are described in U.S. Pat. No. 6,199,110, entitled “Planned Session Termination for Clients Accessing a Resource Through a Server”, issued to Rizvi et al. on Mar. 6, 2001, the contents of which are incorporated herein by reference.


If the transactions that were executing on the terminated node are automatically migrated to a failover node, the failover node will have to obtain locks on the resources being used by those transactions. Obtaining those locks may also result in a significant amount of inter-node traffic.


Recovering Resources Held by a Terminated Node

When a node terminates unexpectedly, the resources that had been opened by the node may have been left in an inconsistent state. To return the resources to a consistent state, certain recovery operations need to be performed on the resources. Techniques for performing recovery operations on resources are described in U.S. Pat. No. 6,182,241, entitled “Method and Apparatus for Improved Transaction Recovery”, issued to Ngai et al., on Jan. 20, 2001, the contents of which are incorporated herein by reference.


Typically, one of the remaining nodes is assigned to perform recovery operations on the resources that the terminated node had open at the time of the failure (the “to-be-recovered resources”). To perform recovery, the designated “recovery node” may have to obtain locks on the to-be-recovered resources. Obtaining those locks may result in a significant amount of inter-node traffic.


Affinity-Based Remastery During Recovery

As mentioned above, upon the termination of a node, current systems randomly remaster the resources that were mastered by the terminated node. The random remastery of those resources makes sense in systems where the resources that were mastered by the terminated node had been randomly assigned to the terminated node. However, in systems that use affinity-based assignment mechanisms, the random remastery of the to-be-remastered resources may lead to inefficiencies.


Specifically, the to-be-remastered resources may include many resources that belong to objects that had an affinity relationship with the terminated node. Such objects are referred to herein as “affinity objects”. The resources that belong to affinity objects are referred to herein as “affinity resources”.


Due to the affinity between the affinity objects and the terminated node, the terminated node may have had many open locks on affinity resources at the time the terminated node terminated. Consequently, many of the affinity resources may also be to-be-recovered resources. Because the recovery node will have to obtain locks on the to-be-recovered resources, and affinity resources are likely to be to-be-recovered resources, efficiency may be achieved by remastering the affinity resources at the recovery node.


According to one embodiment, affinity-based remastering is performed by transferring the affinity relationships of the terminated node to the recovery node. The transfer of the affinity relationships to the recovery node causes the affinity resources to be mastered at the recovery node. Resources that had been mastered at the terminated node that did not belong to objects involved in an affinity relationship could be remastered across all of the surviving nodes using a hash function.


After the affinity relationships of the terminated node have been transferred to the recovery node, the recovery of affinity resources will not require inter-node communication. If a high percentage of the to-be-recovered resources are affinity resources, then the amount of inter-node communication generated by the recovery operation may be dramatically reduced.


Affinity-Based Remastery During Failover

Due to the affinity between the affinity objects and the terminated node, the transactions that were being executed by the terminated node may be transactions that frequently access affinity resources. Consequently, there is a high likelihood that a failover node may heavily access the affinity resources after the transactions of the terminated node are transferred to the failover node. Because the failover node will have to obtain locks on the resources accessed by the transferred transactions, and the transferred transactions are likely to access affinity resources, efficiency may be achieved by remastering the affinity resources at the failover node.


According to one embodiment, affinity-based remastering is performed by transferring the affinity relationships of the terminated node to the failover node. The transfer of the affinity relationships to the failover node causes the affinity resources to be mastered at the failover node. Resources that had been mastered at the terminated node that did not belong to objects involved in an affinity relationship could be remastered across all of the surviving nodes using a hash function.


After the affinity relationships of the terminated node have been transferred to the failover node, operations in which the failover node accesses an affinity resource will not require inter-node communication. If a high percentage of the accesses performed by the transferred transactions involve affinity resources, then the amount of inter-node communication generated by the transferred transactions may be dramatically reduced.


Combined Failover-Recovery

As explained above, inter-node traffic may be reduced by either (1) remastering the affinity resources at the recovery node, or (2) remastering the affinity resources at the failover node. According to one embodiment, the affinity resources may be remastered at both the recovery node and the failover node by assigning the same node to be both the recovery node and the failover node of the terminated node.


In such an embodiment, termination of a node causes a surviving node to be selected to be both the recovery node and the failover node for the terminated instance. This selection may be based, for example, on characteristics of the surviving nodes, such as the number of CPUs, the amount of memory available, etc. Once a combined recovery/failover node is selected, the affinity relationships of the terminated node are automatically transferred to the combined recovery/failover node.


Because of recovery/failover node inherits the affinity relationships, all of the affinity resources are remastered at the recovery/failover node. Because the recovery/failover node is the master of the affinity resources, recovery operations performed on affinity resources do not cause inter-node lock-related traffic. Similarly, operations performed by the transferred transactions on any affinity resources do not cause inter-node lock-related traffic.


Dissolution of Affinity Relationships

As explained above, the affinity relationships of a terminated node are not automatically dissolved upon the termination of the node. Instead, those relationships are transferred to a recovery node, a failover node, or a combined recovery/failover node. Once transferred, those affinity relationships continue until dissolved. The conditions that result in dissolution may vary from implementation to implementation.


For example, in an embodiment in which the affinity relationships are transferred to a recovery node, the affinity relationships that are transferred to a recovery node may be automatically dissolved upon completion of the recovery operation.


Similarly, in an embodiment in which the affinity relationships are transferred to a failover node, the affinity relationships may be dissolved when the failover node completes the execution of the transactions that were transferred from the terminated node.


In an alternative embodiment, the affinity relationships are not automatically dissolved upon completion of any specific task. Instead, the affinity relationships continue until affinity end conditions have been satisfied. Affinity end conditions may vary from implementation to implementation. Affinity end conditions are described in greater detail in the Related Applications.


EXAMPLE PROCESS FLOW


FIG. 2 is a flowchart illustrating steps for responding to termination of a node in a system that implements an embodiment of the techniques described above. Referring to FIG. 2, at step 200, a node N1 terminates. As mentioned above, the termination may be planned or unplanned.


At step 202, a node N2 is selected to be both the recovery node and the failover node for N1. N2 may be based on a variety of factors, including memory capacity, processing capacity, and current workload.


At step 204, the affinity relationships of N1 are transferred to N2, causing the resources that belong to any of the objects in those relationships to be remastered at N2. At step 206, the remaining resources that were mastered by N1 are remastered across the surviving nodes using a hash function.


At step 208, N2 recovers the to-be-recovered resources of N1, and executes the transactions that were transferred from N1.


At step 210, the affinity relationships that were transferred to N2 as a result of the termination of N1 are dissolved, causing the resources that belonged to objects involved in those relationships to be remastered across the surviving nodes using the hash function.


Hardware Overview



FIG. 3 is a block diagram that illustrates a computer system 300 upon which an embodiment of the invention may be implemented. Computer system 300 includes a bus 302 or other communication mechanism for communicating information, and a processor 304 coupled with bus 302 for processing information. Computer system 300 also includes a main memory 306, such as a random access memory (RAM) or other dynamic storage device, coupled to bus 302 for storing information and instructions to be executed by processor 304. Main memory 306 also may be used for storing temporary variables or other intermediate information during execution of instructions to be executed by processor 304. Computer system 300 further includes a read only memory (ROM) 308 or other static storage device coupled to bus 302 for storing static information and instructions for processor 304. A storage device 310, such as a magnetic disk or optical disk, is provided and coupled to bus 302 for storing information and instructions.


Computer system 300 may be coupled via bus 302 to a display 312, such as a cathode ray tube (CRT), for displaying information to a computer user. An input device 314, including alphanumeric and other keys, is coupled to bus 302 for communicating information and command selections to processor 304. Another type of user input device is cursor control 316, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 304 and for controlling cursor movement on display 312. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.


The invention is related to the use of computer system 300 for implementing the techniques described herein. According to one embodiment of the invention, those techniques are performed by computer system 300 in response to processor 304 executing one or more sequences of one or more instructions contained in main memory 306. Such instructions may be read into main memory 306 from another machine-readable medium, such as storage device 310. Execution of the sequences of instructions contained in main memory 306 causes processor 304 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.


The term “machine-readable medium” as used herein refers to any medium that participates in providing data that causes a machine to operation in a specific fashion. In an embodiment implemented using computer system 300, various machine-readable media are involved, for example, in providing instructions to processor 304 for execution. Such a medium may take many forms, including but not limited to, non-volatile media, volatile media, and transmission media. Non-volatile media includes, for example, optical or magnetic disks, such as storage device 310. Volatile media includes dynamic memory, such as main memory 306. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 302. Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications.


Common forms of machine-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, any other optical medium, punchcards, papertape, any other physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.


Various forms of machine-readable media may be involved in carrying one or more sequences of one or more instructions to processor 304 for execution. For example, the instructions may initially be carried on a magnetic disk of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 300 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal. An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 302. Bus 302 carries the data to main memory 306, from which processor 304 retrieves and executes the instructions. The instructions received by main memory 306 may optionally be stored on storage device 310 either before or after execution by processor 304.


Computer system 300 also includes a communication interface 318 coupled to bus 302. Communication interface 318 provides a two-way data communication coupling to a network link 320 that is connected to a local network 322. For example, communication interface 318 may be an integrated services digital network (ISDN) card or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 318 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.


Network link 320 typically provides data communication through one or more networks to other data devices. For example, network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326. ISP 326 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 328. Local network 322 and Internet 328 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 320 and through communication interface 318, which carry the digital data to and from computer system 300, are exemplary forms of carrier waves transporting the information.


Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318. In the Internet example, a server 330 might transmit a requested code for an application program through Internet 328, ISP 326, local network 322 and communication interface 318.


The received code may be executed by processor 304 as it is received, and/or stored in storage device 310, or other non-volatile storage for later execution. In this manner, computer system 300 may obtain application code in the form of a carrier wave.


In the foregoing specification, embodiments of the invention have been described with reference to numerous specific details that may vary from implementation to implementation. Thus, the sole and exclusive indicator of what is the invention, and is intended by the applicants to be the invention, is the set of claims that issue from this application, in the specific form in which such claims issue, including any subsequent correction. Any definitions expressly set forth herein for terms contained in such claims shall govern the meaning of such terms as used in the claims. Hence, no limitation, element, property, feature, advantage or attribute that is not expressly recited in a claim should limit the scope of such claim in any way. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.

Claims
  • 1. A computer-implemented method for responding to termination of a terminated node, the method comprising: using an affinity-independent assignment mechanism to cause a plurality of nodes to master all resources that belong to an object, wherein at least two resources that belong to the object are mastered by separate nodes of the plurality of nodes;using an affinity-based assignment mechanism to (a) establish an affinity relationship between a first node of the plurality of nodes and the object and (b) cause the first node to master all resources that belong to the object;in response to termination of the first node, determining that the affinity relationship is established between the terminated first node and object;in response to determining that the affinity relationship is established between the terminated first node and the object, causing a particular node of the plurality of nodes to master all resources that belong to the object by transferring the affinity relationship from the first node to the particular node;causing the particular node to perform at least one of: recovering resources that were opened by the terminated first node; andserving as a failover node to execute one or more transactions that had been executing on the terminated first node;wherein the method is performed by one or more computing devices.
  • 2. The method of claim 1 wherein causing the particular node to perform includes causing the particular node to perform both of: recovering resources that were opened by the terminated first node; andserving as a failover node to execute one or more transactions that had been executing on the terminated first node.
  • 3. The method of claim 1, further comprising: dissolving said affinity relationship between the particular node and said object in response to the particular node completing the recovery of resources that were opened by the terminated first node.
  • 4. The method of claim 1, further comprising: dissolving said affinity relationship between the particular node and said object in response to the particular node completing execution of the one or more transactions that had been executing on the terminated first node.
  • 5. The method of claim 1 wherein at the time of termination of the terminated first node, the terminated first node is master of a set of certain resources for which an affinity relationship is not established between any object and said terminated first node, the method further comprising: in response to termination of the terminated first node, remastering said set of certain resources among one or more of the plurality of nodes that remain after termination of the terminated first node.
  • 6. The method of claim 1 wherein termination of the terminated first node is an unplanned termination caused by a failure.
  • 7. The method of claim 1 wherein termination of the terminated first node is a planned termination.
  • 8. The method of claim 1, further comprising: selecting the particular node to be the recovery node for the terminated first node based on one or more characteristics of the particular node.
  • 9. The method of claim 1, further comprising: selecting the particular node to be the failover node for the terminated first node based on one or more characteristics of the particular node.
  • 10. A computer-readable storage medium storing one or more sequences of instructions which, when executed by one or more processors, causes the one or more processors to perform: using an affinity-independent assignment mechanism to cause a plurality of nodes to master all resources that belong to an object, wherein at least two resources that belong to the object are mastered by separate nodes of the plurality of nodes;using an affinity-based assignment mechanism to (a) establish an affinity relationship between a first node of the plurality of nodes and the object and (b) cause the first node to master all resources that belong to the object;in response to termination of the first node, determining that the affinity relationship is established between the terminated first node and the object;in response to determining that the affinity relationship is established between the terminated first node and the object, causing a particular node of the plurality of nodes to master all resources that belong to the object by transferring the affinity relationship from the first node to the particular node;causing the particular node to perform at least one of: recovering resources that were opened by the terminated first node; andserving as a failover node to execute one or more transactions that had been executing on the terminated first node.
  • 11. The computer-readable storage medium of claim 10 wherein causing the particular node to perform includes causing the particular node to perform both of: recovering resources that were opened by the terminated first node; andserving as a failover node to execute one or more transactions that had been executing on the terminated first node.
  • 12. The computer-readable storage medium of claim 10, the one or more sequences of instructions further comprising instructions for dissolving said affinity relationship between the particular node and said object in response to the particular node completing the recovery of resources that were opened by the terminated first node.
  • 13. The computer-readable storage medium of claim 10, the one or more sequences of instructions further comprising instructions for dissolving said affinity relationship between the particular node and said object in response to the particular node completing execution of the one or more transactions that had been executing on the terminated first node.
  • 14. The computer-readable storage medium of claim 10 wherein at the time of termination of the terminated first node, the terminated first node is master of a set of certain resources for which an affinity relationship is not established between any object and said terminated first node, the one or more sequences of instructions further comprising instructions for: in response to termination of the terminated first node, remastering said set of certain resources among one or more of the plurality of nodes that remain after termination of the terminated first node.
  • 15. The computer-readable storage medium of claim 10 wherein termination of the terminated first node is an unplanned termination caused by a failure.
  • 16. The computer-readable storage medium of claim 10 wherein termination of the terminated first node is a planned termination.
  • 17. The computer-readable storage medium of claim 10, the one or more sequences of instructions further comprising instructions for selecting the particular node to be the recovery node for the terminated first node based on one or more characteristics of the particular node.
  • 18. The computer-readable storage medium of claim 10, the one or more sequences of instructions further comprising instructions for selecting the particular node to be the failover node for the terminated first node based on one or more characteristics of the particular node.
US Referenced Citations (169)
Number Name Date Kind
4633387 Hartung et al. Dec 1986 A
4663709 Fujiwara et al. May 1987 A
4809157 Eilert et al. Feb 1989 A
4827411 Arrowood et al. May 1989 A
4873517 Baratz et al. Oct 1989 A
4914571 Baratz et al. Apr 1990 A
4972316 Dixon et al. Nov 1990 A
4972437 Citron et al. Nov 1990 A
4980822 Brantley et al. Dec 1990 A
5101348 Arrowood et al. Mar 1992 A
5109483 Baratz et al. Apr 1992 A
5239649 McBride et al. Aug 1993 A
5249291 Williams Sep 1993 A
5283897 Georgiadis et al. Feb 1994 A
5307485 Bordonaro Apr 1994 A
5313051 Brigida et al. May 1994 A
5319773 Britton et al. Jun 1994 A
5325525 Shan et al. Jun 1994 A
5333313 Heising Jul 1994 A
5377350 Skinner Dec 1994 A
5432926 Citron et al. Jul 1995 A
5440732 Lomet et al. Aug 1995 A
5448727 Annevelink Sep 1995 A
5490261 Bean et al. Feb 1996 A
5539883 Allon et al. Jul 1996 A
5546575 Potter et al. Aug 1996 A
5581737 Dahlen et al. Dec 1996 A
5592671 Hirayama et al. Jan 1997 A
5612856 Albach Mar 1997 A
5613060 Britton et al. Mar 1997 A
5625811 Bhide et al. Apr 1997 A
5640556 Tamura Jun 1997 A
5675791 Bhide et al. Oct 1997 A
5692182 Desai et al. Nov 1997 A
5710915 McElhiney Jan 1998 A
5717919 Kodavalla et al. Feb 1998 A
5740362 Buickel et al. Apr 1998 A
5761500 Gallant et al. Jun 1998 A
5761512 Breslau et al. Jun 1998 A
5784697 Funk et al. Jul 1998 A
5794229 French et al. Aug 1998 A
5822531 Gorczyca et al. Oct 1998 A
5845326 Hirayama et al. Dec 1998 A
5848408 Jakobsson et al. Dec 1998 A
5860137 Raz et al. Jan 1999 A
5870743 Cohen et al. Feb 1999 A
5892754 Kompella et al. Apr 1999 A
5892945 Mirchandaney et al. Apr 1999 A
5897632 Dar et al. Apr 1999 A
5907849 Dias et al. May 1999 A
5920872 Grewell et al. Jul 1999 A
5946685 Cramer et al. Aug 1999 A
5950188 Wildermuth Sep 1999 A
5956704 Gautam et al. Sep 1999 A
5964838 Cheung et al. Oct 1999 A
5970495 Baru et al. Oct 1999 A
6003036 Martin Dec 1999 A
6011918 Cohen et al. Jan 2000 A
6023702 Leisten et al. Feb 2000 A
6058389 Chandra et al. May 2000 A
6069705 Suvarna May 2000 A
6078990 Frazier Jun 2000 A
6081900 Subramaniam et al. Jun 2000 A
6088758 Kaufman et al. Jul 2000 A
6092062 Lohman et al. Jul 2000 A
6101495 Tsuchida et al. Aug 2000 A
6108654 Chan et al. Aug 2000 A
6112198 Lohman et al. Aug 2000 A
6112225 Kraft et al. Aug 2000 A
6115830 Zabarsky Sep 2000 A
6128762 Jadav et al. Oct 2000 A
6173313 Klots et al. Jan 2001 B1
6178529 Short Jan 2001 B1
6185601 Wolff Feb 2001 B1
6192483 Moiin et al. Feb 2001 B1
6208994 Abdelnur Mar 2001 B1
6219666 Krishnaswamy et al. Apr 2001 B1
6223182 Agarwal et al. Apr 2001 B1
6240417 Eastwick et al. May 2001 B1
6240428 Yeung et al. May 2001 B1
6240466 McKeehan et al. May 2001 B1
6249802 Richardson et al. Jun 2001 B1
6249879 Walker Jun 2001 B1
6253229 Nielsen et al. Jun 2001 B1
6253273 Blumenau Jun 2001 B1
6263331 Liu et al. Jul 2001 B1
6272491 Chan et al. Aug 2001 B1
6279111 Jensenworth et al. Aug 2001 B1
6295541 Bodnar et al. Sep 2001 B1
6311265 Beckerle et al. Oct 2001 B1
6321238 Putzolu Nov 2001 B1
6321240 Chilimbi et al. Nov 2001 B1
6324563 Hotea et al. Nov 2001 B1
6330556 Chilimbi et al. Dec 2001 B1
6336177 Stevens Jan 2002 B1
6341340 Tsukerman et al. Jan 2002 B1
6345288 Reed et al. Feb 2002 B1
6363396 Klots et al. Mar 2002 B1
6370619 Ho et al. Apr 2002 B1
6385613 Grewell et al. May 2002 B1
6405274 Chan Jun 2002 B1
6424992 Devarakonda et al. Jul 2002 B2
6438714 Canestaro et al. Aug 2002 B1
6453404 Bereznyl et al. Sep 2002 B1
6480895 Gray et al. Nov 2002 B1
6529906 Chan Mar 2003 B1
6549931 Amor et al. Apr 2003 B1
6567509 Gusler et al. May 2003 B1
6567811 Edwards et al. May 2003 B1
6594698 Chow et al. Jul 2003 B1
6611899 Takahashi et al. Aug 2003 B2
6615203 Lin et al. Sep 2003 B1
6618851 Zundel et al. Sep 2003 B1
6636248 Christensen et al. Oct 2003 B1
6658448 Stefaniak et al. Dec 2003 B1
6711571 Putzolu Mar 2004 B2
6735613 Jean-Dominique et al. May 2004 B1
6751616 Chan Jun 2004 B1
6892210 Erickson et al. May 2005 B1
6920454 Chan Jul 2005 B1
6978279 Lomet et al. Dec 2005 B1
6981104 Prabhu Dec 2005 B2
7031956 Lee et al. Apr 2006 B1
7080075 Chan et al. Jul 2006 B1
7085911 Sachedina et al. Aug 2006 B2
7120645 Manikutty et al. Oct 2006 B2
7191172 McGrath et al. Mar 2007 B2
7194462 Riccardi et al. Mar 2007 B2
7203748 Hare et al. Apr 2007 B2
7266764 Flam Sep 2007 B1
7315852 Balmin et al. Jan 2008 B2
7324972 Oliver et al. Jan 2008 B1
7380039 Miloushev et al. May 2008 B2
7386568 Warner et al. Jun 2008 B2
7386630 Liong et al. Jun 2008 B2
7493400 Loaiza et al. Feb 2009 B2
20020038301 Aridor et al. Mar 2002 A1
20020040357 Miller Apr 2002 A1
20020073019 Deaton Jun 2002 A1
20020116457 Eshleman et al. Aug 2002 A1
20020124082 San Andres et al. Sep 2002 A1
20030023728 Yaung Jan 2003 A1
20030028550 Lee et al. Feb 2003 A1
20030036882 Harper et al. Feb 2003 A1
20030041215 George et al. Feb 2003 A1
20030097383 Smirnov et al. May 2003 A1
20030115548 Melger Jun 2003 A1
20030140308 Murthy et al. Jul 2003 A1
20030149698 Hoggatt Aug 2003 A1
20040064466 Manikutty et al. Apr 2004 A1
20040148278 Milo et al. Jul 2004 A1
20040172422 Putzolu Sep 2004 A1
20040199919 Tovinkere Oct 2004 A1
20040215640 Bamford et al. Oct 2004 A1
20040220912 Manikutty et al. Nov 2004 A1
20040267760 Brundage et al. Dec 2004 A1
20050065949 Warner et al. Mar 2005 A1
20050097084 Balmin et al. May 2005 A1
20050228791 Thusoo et al. Oct 2005 A1
20050240553 Diggs et al. Oct 2005 A1
20050289125 Liu et al. Dec 2005 A1
20060074901 Pirahesh et al. Apr 2006 A1
20060090139 Jenni et al. Apr 2006 A1
20060129634 Khouzam et al. Jun 2006 A1
20060143350 Miloushev et al. Jun 2006 A1
20060149731 Schirmer et al. Jul 2006 A1
20060235840 Manikutty et al. Oct 2006 A1
20060265414 Loaiza et al. Nov 2006 A1
20060265420 Macnaughton et al. Nov 2006 A1
Foreign Referenced Citations (9)
Number Date Country
2 435 388 Jan 2003 CA
0483424 May 1992 EP
0642092 Mar 1995 EP
1521184 Apr 2005 EP
WO 9704384 Feb 1997 WO
WO 9854648 Dec 1998 WO
WO 9944130 Sep 1999 WO
WO 02073416 Sep 2002 WO
WO 2005013155 Feb 2005 WO
Related Publications (1)
Number Date Country
20070043726 A1 Feb 2007 US