Database computer system with application recovery and dependency handling write cache6151607Abstract This invention concerns a database computer system and method for making applications recoverable from system crashes. The application state (i.e., address space) is treated as a single object which can be atomically flushed in a manner akin to flushing individual pages in database recovery techniques. To enable this monolithic treatment of the application, executions performed by the application are mapped to logical loggable operations which can be posted to the stable log. Any modifications to the application state are accumulated and the application state is periodically flushed to stable storage using an atomic procedure. The application recovery integrates with database recovery, and effectively eliminates or at least substantially reduces the need for check pointing applications. In addition, optimization techniques are described to make the read, write, and recovery phases more efficient. Claims What is claimed is: Description TECHNICAL FIELD
TABLE 1
______________________________________
Logical
Operation Expressed as Read/Write of Application State
______________________________________
Execute Read application state, write application state.
Ex(A)
Initiate Write application state from the static state
In(A) retrieved from stable memory. This writes the
application invocation state instance.
Terminate Write final application state.
T(A)
Read Read application state, write application state
R(A) with read object data values that are included in
the read log record.
Write Writes do not effect application state. However,
W(O) an application write transforms the written
object from one state to another by overwriting
its prior value with the after-image value stored
in the write log record. Accordingly, a write
operation writes data object state.
______________________________________
It is noted that there may be interactions that cannot be mapped into these five operations. For example, reading a message may consume the message as well; i.e. the application writes to the message queue by removing the message. This interaction is both a read and a write that cannot be optimized as above. FIG. 9 shows an example series of loggable operations that are mapped from application executions. The loggable operations are designated by a circle: the legend "Int" within a circle stands for an initiate operation; the legend "Ex" within a circle represents an execute operation; the legend "R" within a circle stands for a read operation; the legend "W" within a circle represents a write operation; and the legend "T" within a circle stands for a terminate operation. The initiate operation 90 writes the initial application state A.sub.1. The resource manager includes in a single log record an application identity A, its state ID 1, and the name of the operation Int. The log record is written in the volatile log and subsequently posted to the stable log. An execute operation 92 reads the application state A.sub.1, performs some internal executions, and writes the application state A.sub.2 by means of the application executing beginning in at state A.sub.1 and the execution resulting in state A.sub.2. The resource manager logs the application identifier A, a state ID 2, and the execution operation Ex that resulted in the application state A.sub.2. A read operation 94 reads the application state A.sub.2 and an object O.sub.1. As above, the shorthand notation "O.sub.1 " means an object with an identifier O taken at a state ID "1." The object value O.sub.1 is read into the application buffers and results in a next application state A.sub.3. The resource manager logs the application identifier A, its state ID 3, and the read operation R that resulted in the application state A.sub.3. In addition, the resource manager includes the object value O.sub.1 in the log record. Writing the values read from the object into the log record ensures that the values are available for redo of the application operations during recovery in the event that the object O has been subsequently updated and a subsequent value flushed to the stable database. Unfortunately, in some cases, the values read from the object O can be large and hence logging the entire object value is not desirable. Moreover, the log record containing the object values is separate from, and often duplicative of, the data pages holding the object O.sub.1 which are occasionally flushed to the stable database. The system and methods described herein address this problem by optimizing the read operation to reduce the amount of data placed on the log. This optimization involves development of a new cache manager, a topic that is discussed below with reference to FIGS. 10-14 in more detail. An execute operation 96 transforms the application state from state A.sub.3 to state A.sub.4. The resource manager logs the application identifier A, a state ID 4, and the execution operation Ex that resulted in the application state A.sub.4. A write operation 98 writes a modified version of the previously read object, designated as O.sub.2. The resource manager logs the object identifier O, its state ID 2, the value O.sub.2 written, and the write operation W that resulted in object state O.sub.2. This ensures that the write parameters are available on the log for redo of the application operations during recovery in the event that the object O.sub.2 is not flushed to the stable database. Similar to the read case, the value O.sub.2 can be large and duplicated elsewhere in the system, and thus logging the entire object value is not desirable. The system and methods described herein address this problem by optimizing the write operation to avoid logging the value of O, by logging the application state that provided the data value for O. This write optimization involves development of a new cache manager, a topic that is discussed below with reference to FIGS. 15-23 in more detail. An execute operation 100 transforms the application state from state A.sub.4 to state A.sub.5. The resource manager logs the application identifier A, a state ID 5, and the execution operation Ex that resulted in the application state A.sub.5. A terminate operation 102 writes the final application state A.sub.6. The resource manager writes in a log record the application identifier A, a state ID 6, and the termination operation T that resulted in the application state A.sub.6. The changes to the application during these operations are accumulated in the application state stored in the volatile cache. From time to time, the cache manager flushes the application state to stable storage. The flushed application state is tagged with a state ID. The flushing of the application state effectively installs all application operations which have been logged in the stable log that have a state ID less than the state ID of the flushed application state. General Recovery Following a system failure, the database computer system invokes a recovery manager 71 to recover the data pages (and other data objects) and application state lost during the crash. During redo recovery, the recovery manager 71 retrieves the most recently flushed data objects and application objects in the stable database and replays the operations in the log against the stable objects. The recovery manager 71 can be implemented as a conventional recovery manager which replays the stable log, beginning at a point known to be earlier than the oldest logged operation that was not yet installed. The recovery manager compares the state ID of each logged operation in the stable log with the state ID of a retrieved data object or application object. If the state ID of the logged operation is later than the state ID of the stable object, the recovery manager redoes that logged operation. This redo process returns the database computer system to the previous state in which it was operating immediately prior to the crash, including the recovered applications. Another aspect of this invention involves techniques to optimize recovery to avoid replaying operations that are rendered obsolete by subsequent operations. In this case, the recovery manager is implemented to handle the recovery optimization techniques, as is described in more detail below with reference to FIG. 24-27. Read Optimization In the recovery scheme described above, the read operation involves writing all of the contents read from the object to the stable log in association with the read operation. The logged operation can then described as reading and writing application state. This type of operation, in which only a single object is written, and at most that object is read, is referred to as a "physiological operation." These operations are useful in that using only such operations, recovery can be implemented using conventional cache managers and cache management techniques. The cache manager need not be concerned about object flushing sequence or preserving a certain object state because any data value obtained from an object which was read, and hence which is needed to redo an application operation is available directly from the stable log. The benefits accruing to cache management as a result of logging only physiological operations come at a cost. Treating an application read as a physiological operation requires writing data, and often large amounts of data, to the stable log. This reduces efficiency in the logging process and consumes I/O resources. Moreover, the data written to the stable log is a copy of data in an object, which is maintained in volatile cache and occasionally flushed to the stable database. It is wasteful to duplicate large data objects in log records when these objects are available elsewhere. Accordingly, an aspect of this invention is to optimize the logged read operation to avoid writing the object's data to the log record. Generally, the optimizing technique eliminates logging the read values by substituting, for the read values, names of the objects from where the values are read in the log record. That is, rather than logging the object value that is read, the read optimization technique involves logging the identity of the object that is the source of the values being read. We call this a "logical read" and denote it by R(A,O), indicating that application A reads data object O for the input value needed to transform application A's state; it does not get this input value from the log record. For instance a log record for the logical read operation includes the application object's identifier A, its state ID, A.SID, the data object's identifier O, the data object's state ID, O.SID, and an indication that a read operation was performed: <A, A.SID, O, O.SID, R> Other information may also be included, such as an index to a specific value set contained in the object. Posting information that names the source of a data value, rather than the value itself, substantially reduces the amount of information placed on the stable log. When redoing a logged operation during recovery, the recovery manager 71 uses the object name to locate the object and reads the value from that object. Unfortunately, substituting object names for the actual values comes at a cost of introducing dependencies between the objects in the cache. Attention must now be paid to the order in which objects are flushed to stable storage. If objects are flushed out of proper sequence, a particular state of an object may be irretrievably lost. An object name contained in a logged operation would not enable restoration of the object values needed by the operation if the data value for the object is not the same as the value that was originally read from the object during normal execution. FIG. 10 illustrates the dependency issue introduced by the read optimization technique. FIG. 10 shows a sequence of operations comprising a read operation 110, an execute operation 112, a write operation 114, and an execute operation 116. These operations are identical to the operations 94-100 in FIG. 9. However, unlike the procedure in FIG. 9, the value of the object that is read at operation 110 is not posted to the log. Instead, only the object identifier O and state ID are posted. The object identifier and state ID identify the exact data value needed by the logged operation. The operation sequence in FIG. 10 introduces a dependency between the application object A and the data object O. Assume, for example, that the cache manager flushes the data object O to stable memory at state O.sub.2 after the write operation 114 without having previously flushed the application object A to install the operations 110 and 112 preceding the write operation 114. Then, before the cache manager has an opportunity to flush the application object A, the system crashes. Upon replay of the log, the computer database system is unable to redo the operations to resurrect the true application states A.sub.2 -A.sub.4 because the object state O.sub.1 is not available. That is, the stable database only contains the flushed object O at state 2, not at its initial state 1. (Note that we do not describe the write 114 as reading application state A.sub.3. Rather, write 114 is a physical write that gets the value written as O.sub.2 from the log record. This avoids additional flush dependencies.) This dependency is explained in the context of an installation graph as a "read-write edge." That is, the write operation writes data into a read variable set which is read in an operation preceding the write operation, thereby overwriting needed data to carry out the read operation during recovery. Installation graphs and the read-write edge case are described in detail in a publication by David B. Lomet and Mark R. Tuttle, entitled "Redo Recovery after System Crashes," Proceedings of the 21.sup.st VLDB Conference, Zurich Switzerland, 1995. This publication is incorporated by reference. To manage dependencies, the database computer system is equipped with a cache manager that is attentive to flushing sequence. The cache manager is designed to ensure that an application object is flushed to stable memory, thereby installing its operations, before any modified data objects from which the application has read are flushed to stable memory. The cache manager implements an object table which tracks active objects in the volatile cache, and monitors flush order dependencies between those objects. FIG. 11 shows a cache manager 120 with an object table 122. The object table 122 holds a list of objects that are presently stored, in the volatile cache or that have flush dependencies with objects presently stored. These objects may be in the form of application objects or data objects. Typically, the data objects have volatile (i.e. cache) locations that are identified as memory pages. With regard to data objects, the object table 122 is similar to prior art "page tables." However, unlike prior art page tables, the object table 122 also maintains a list of application objects, with each application object comprising the application address space, and information with each entry that is used to manage flush dependencies. The object table 122 shows an entry 124 for the application object A and an entry 126 for the data object O which reflect respective object states following the read operation 110. These entries contain information pertaining to the objects which is organized in data structures 128 and 130. Each data structure has an object identifier field 131, 132 to hold the object identifier (e.g., A or O), a state identifier field 133, 134 to hold the state ID for the value of the object, a dirty flag field 135, 136 which holds a flag bit indicating whether or not the object has been modified in volatile cache without those modifications being flushed to stable memory, and a cache location field 137, 138 to hold an address to a location in volatile cache where the current cached value of the object physically resides. The data structure may further have a stable location field to hold an address of the object in stable memory, although this field is not shown in this example. Alternatively, the stable location may be derivable from the object identifier, objectID, in field 131, 132. Each data structure 128, 130 also has a predecessor field 139, 140 to hold information for any predecessor object. An object is a "predecessor object" to a subject object if that object must be flushed prior to flushing the subject object. The predecessor field 139, 140 enables the object table 120 to track dependencies between the operations. For the read operation, the dependency cases can be resolved into two rules: (1) only an application object can be a predecessor; and (2) an application object has no predecessor. The underlying reason for these rules can be better understood with a brief introduction to a "write graph," which is a graph derived from an "installation graph," and is described in the above incorporated article by Lomet and Tuttle. FIG. 12 shows a write graph 144 for a read-write edge in which a read operation reads a data object O at a first state during execution of the application object A, and subsequently a write operation writes the data object O to create a second state of that data object. In write graph notation, the circles represent nodes. A write graph node n is characterized by a set of operations ops(n) and a set vars(n) of variables (i.e., objects) written by the operations in ops(n). There is an edge between write graph nodes m and n if there is an installation graph edge between an operation in ops(m) and an operation in ops(n). The cache manager installs the operations of ops(n) by flushing the objects of vars(n) atomically. Write graph 144 has two nodes, an application node 146 with vars(146)={A} and a node 148 with vars(148)={O}. The application node 146 shows that the read operation has been performed which changes the application state (by reading values into the application buffers) and that the application has continued its execution with an Ex(A) operation. The data node 148 shows that the write operation affects the object state. Write graph 144 demonstrates a flush order dependency between the application object and data object. To ensure correct recovery of the application, the cache manager flushes the application object represented by node 146, thereby installing the read operation, prior to flushing the data object represented by node 148. This write graph further illustrates that, for a logical read operation, an application object A has no predecessor for which it is concerned. All paths between nodes 146 and 148 are at most a length of one. Only the data object O has a predecessor and that predecessor is the application object A (which read it). The logical read operation, by itself, thus reduces to a straightforward result. With reference again to FIG. 11, the predecessor field 140 denotes a list of predecessors for the object O entry 130. The predecessor entry shown contains the identifier for the application object A data record 128, denoted as the predecessor object PO. This predecessor is established when the read operation 110 (FIG. 10) is encountered. The predecessor entry also includes a state identifier for the originating object O, i.e., O.SID. That is, in the general case, an entry on the predecessor list is represented as: <O.SID, PO> It is noted that a data object may have more than one predecessor. Hence, the predecessor field 140 may contain a set of entries for multiple predecessor objects. Since FIG. 11 illustrates a read operation, the application object has no predecessor. As a result, the predecessor field 139 for the application A data structure 128 contains a null pointer, denoting the empty list. Each data structure 128, 130 further includes a successor field 141, 142 to hold information for any successor object. An object is a "successor object" of a subject object if the subject object must be flushed before the successor object is flushed. The successor field 141, 142 is primarily used as a bookkeeping function, to track successor objects, as it adds no additional information that is not already contained in the predecessor field. When flushing an object, the cache manager ensures that all real predecessors are flushed beforehand. After flushing, the cache manager uses successors only to clean up by removing the flushed object as a predecessor in other predecessor lists. Less information is needed for successors, for example, object state ID, O.SID is not needed. The cleanup is unconditional, taking place regardless of whether the predecessor/successor is real or potential. It is noted, however, in an alternative implementation, the successor field may be primarily relied upon, with the predecessor field serving a secondary bookkeeping role. The first statement of the read operation is that only an application object can be a predecessor. The converse to this statement is that only an application object can have a successor. In FIG. 11, the successor field 141 of the application A data structure 128 contains an entry for the object O data record 130. The successor entry is established when the read operation 110 (FIG. 10) is encountered. The data object O has no successor. As a result, the successor field 142 for the object O data structure 130 contains a null pointer indicating an empty list. Through the predecessor and successor fields in the object table, the cache manager 120 tracks dependencies between the objects. When the cache manager 120 decides to flush an object to stable memory, the cache manager first checks the object table 122, and particularly, the predecessor field of the object entry to determine whether or not the object to be flushed has any predecessors. If a predecessor is listed for that object, the cache manager will flush the predecessor object, assuming it is "real," prior to flushing the subject object. The cache manager 120 distinguishes between "real" and "potential" predecessors. A "real" predecessor object is one that has read an object whose state has been changed by subsequent operations since the time the object was read by the predecessor. A real predecessor must be flushed prior to the subject object to ensure retention of a correct state in the stable database. In contrast, a "potential" predecessor object is one that has read an object whose state has not changed since the time the object was recorded as a predecessor. A potential predecessor does not require priority flushing, although the cache manager continues to track potential predecessors because they may turn into real predecessors. These are tracked by retaining object table entries for objects with predecessors, even if they themselves are flushed and their values removed from the cache. FIG. 10 demonstrates the difference between real and potential predecessors. At the read operation 110, the cache manager updates the predecessor list for the data object O in the object table to reflect that the application object A is a predecessor. At this point, however, application object A is only a "potential" predecessor because object O's value is still the same. Hence, application object A does not require flushing prior to the data object O as the same application state can be recovered from re-reading data object O. However, at the write operation 114, the predecessor becomes a "real" predecessor. Here, the data object O is modified by the write operation 114, thus changing the state of O that the application object A read previously in the read operation 110. Now, application object A needs to be flushed prior to the data object O, or else application object A will not be restored to the same application state during recovery because the state 1 of data object O is irretrievably lost. The cache manager determines whether a predecessor is "real" or "potential" by comparing the current state identifier of the object to be flushed against the state identifier of the same object as recorded in the entry of the predecessor list. For example, suppose the cache manager 120 decides to flush data object O following the execute operation 112 (FIG. 10). The cache manager compares the current state ID of the data object O, which is still state 1 at that point, with the state ID recorded in the entry for the predecessor application object A contained in the predecessor field 140. In this case, object O's state ID in the entry is also 1. The state IDs match and thus, the application object A is only a potential predecessor at this point. The cache manager is free to flush the data object O at this point without first flushing application A. The predecessor entry for application object A is maintained, however, in the predecessor field 140 of the object O entry 128. Now, suppose that the cache manager decides to flush the data object O following the write operation 114 (FIG. 10). The cache manager compares the current state ID of the data object O, which is now state 2 following the write operation, with the state ID recorded in the entry for the predecessor application object A contained in the predecessor field 140. As before, the object state ID in the entry is 1. The state IDs no longer match. Thus, the application object A has now become a real predecessor. When faced with a real predecessor, the cache manager must first flush the predecessor, in this case the application object A, prior to flushing the data object O. Flushing the application object A effectively installs all of the operations (which in the example, all update application A) through the write operation 114 (which accounts for the new object state O.sub.2). Once the application object A is flushed, the predecessor entry contained in the data object O's predecessor list 140 is removed. The cache manager deletes the predecessor entry from the predecessor list 140. Since application object A may also be a predecessor for other objects, the cache manager uses the application object A's successor list 141 to inform any successor data objects (including data object O) that application object A has been flushed and is no longer a predecessor to them. When an application terminates, the cache manager scans the successor field 141 of the application object A to remove from the predecessor field of successor objects any entries to the terminated application. FIGS. 13 shows an alternative construction of the object table. In FIG. 13, the object table 150 contains an entry 152 for a data object O at state 1. This entry includes a data structure 154 having an object identifier field 156, a dirty flag field 158, a cache location field 160, a predecessor field 162, and a successor field 164. In data structure 154, the predecessor field 162 contains an index to a separate predecessor table 166. For each predecessor object, the predecessor field 162 contains a unique index to an entry in the predecessor table 166 containing information used to identify and locate the predecessor object. In this example, the entry in the predecessor table 166 contains a real bit and an object identifier of the predecessor (i.e., objectID.sub.Pred =A). The real bit which is set (i.e., to a binary value 1) if the predecessor object is a "real" predecessor and is reset (i.e., to a binary value 0) if the predecessor object is a "potential" predecessor. When the cache manager decides to flush the data object O, the cache manager no longer compares state IDs to determine whether a predecessor is real or potential. Instead, the cache manager examines the real bit. If the real bit is set, the cache manager knows it must flush the associated predecessor object before flushing the subject object. The "real" bit initialized to zero when an object O is read by an application. At the time that the object O is subsequently written, all current potential predecessors (which have real bit set to zero) have this bit set to one. The read optimization techniques described in this section are beneficial because they eliminate having to post the values obtained during a read operation onto the log. Instead, the log only contains information to identify the object that was read. While this reduced the amount of data to be logged, the read optimization techniques introduced flush dependencies between objects. The cache manager thus keeps an object table which tracks dependencies to ensure a proper flushing order. Write Optimization In the general recovery scheme introduced at the beginning of this detailed disclosure, a write operation involves posting, to the stable log in association with the write operation, all of the values that are written to an object. The logged operation can be described as simply writing the object state of a data object. This yields a physiological operation that can be handled using conventional cache managers and cache management techniques. The conventional cache manager need not be concerned with object flushing sequence or preserving a certain object state because any data value written to an object, and hence is needed during recovery, is available directly from the stable log. However, the data values written to the stable log are duplicative of values in the application object's output buffers. Thus, the logging effort is inefficient and computationally expensive. Accordingly, an aspect of this invention is to optimize the logged write operation to avoid posting the written values to the log record. Generally, the write optimizing technique eliminates logging the written values by logging the identity of the object from where the values are obtained, along with its state ID. Posting information that names the source object and its state ID, rather than the values themselves, substantially reduces the amount of information placed on the stable log. Such writes are called "logical writes," and are denoted by W(A,O) indicating that application A is writing data object O. A logical write operation results in the posting of a single log record to the stable log, wherein the log record s contains the data object identifier O, the data object O's state ID, O.SIID, the application object identifier A, its state ID, A.SID, and an indication that a write operation W was performed: <O, O.SID, A, A.SID, W>. At recovery, operations on that source object (typically, an application object) are replayed to its state at the time of the execution of the write operation. The regenerated application state inherently includes the state of the output buffers needed to replay the write operation. Hence, logging the after-image of the data object resulting from the write can be avoided. FIG. 14 shows the sequence of operations identical to FIG. 10, including the read operation 110, the execute operation 112, the write operation 114, and the execute operation 116. The write operation 114 involves reading application state A.sub.3 and writing data object state O.sub.2. Unlike FIG. 10, however, the value written to object O (i.e., O.sub.2) at the write operation 114 is not posted to the log. Instead, the cache manager logs the identify of the data object that is written (i.e., O), the data object's state ID 2, the identity of the application object A which is the source of the values written, object A's state ID 3, and the write operation W which results in object state O.sub.2. Posting these objects' identities consumes much less memory and fewer I/O resources than posting the entire value of the object state O.sub.2 to the stable log. The application object identifier A and its state ID identify the exact data value needed by the logged write operation. The write optimization technique comes at the expense of introducing more flush order dependencies to ensure proper installation of operations. In the read optimization case described in the preceding section, flush order dependencies are comparatively easy to handle. The dependency chain is at most one link in length. The application state in a read dependency has no predecessors, and hence nothing ever needs to be flushed before the application state itself. When the cache manager decides to flush an object, it flushes all predecessor objects (i.e., any predecessor application objects) and then the subject object. The read dependencies are thus "acyclic," meaning that each object can be flushed atomically independently of other objects in a prescribed order, without requiring the simultaneous atomic flushing of multiple objects. Unfortunately, flush dependencies arising from write operations, when combined with dependencies arising from read operations, can result in "cyclic" flush dependencies. This means that an object that is both read and written by an application must be flushed both before (actually, not later than) and after (actually, not earlier than) the application object. Cyclic flush dependencies require atomically flushing both the data object and the application object simultaneously, which presents significant complications. FIG. 15 illustrates a cyclic dependency introduced by the write optimization technique. FIG. 15 shows a sequence of operations and how the operations are represented as write graphs. The sequence of logical operations includes a read operation 190, an execute operation 192, a write operation 194, an execute operation 196, a read operation 198, and a write operation 200. Corresponding write graphs 202-212 are provided below each operation. The write graphs consist of nodes. Each node n identifies a set of uninstalled operations (i.e., the abbreviations above the dotted line within the nodes), denoted ops(n), in correlation with a set of data or application objects written by the operations (i.e., the abbreviations below the dotted line within the nodes), denoted vars(n). The cache manager usually sees the operations in serialization order. Including the operations in the write graphs in that order is fine because serialization is stronger than installation order. At the read operation 190, the corresponding write graph 202 consists of a node containing application object A. The read operation 190 reads application state A.sub.1 and data object state O.sub.1 and writes application state A.sub.2. This is reflected in the write graph 202 as involving two nodes: one node containing the application object A and one node containing the data object O. The read operation is registered in the node containing the application object A because the operation writes the application state. The notation R.sub.190 (i.e., read operation 190) in the node containing the application object A indicates that the read operation writes object A. No operation is placed in the node containing object O, because the read operation does not write the object state. When a new operation occurs, the operation is added to the write graph as follows: 1. Merge into a single node m all nodes n for which vars(n) intersect (write(Op) intersect read(Op)) is not null, where write(Op) is the set of variables written by operation Op, and read(Op) is the set of variables read by Op. 2. If the resulting graph has a cycle, collapse each strongly connected region of the graph into a single node. Each such node n has ops(n) that equals the union of ops(p) of nodes p contained in its strongly connected region and vars(n) that equals the union of vars(p). 3. For each node p.noteq.m, set vars(p)=(vars(p)-nx(Op)). This removes from vars(p) objects that become not exposed, where nx(Op)=write(Op)-Read(Op) 4. To ensure that objects in node p are not exposed when we flush them to install their operations, an edge is defined from each node q with an operation that reads the final version of the object in the node p to node p. Previously, each node p had node q as a potential predecessor. The read operation 190 introduces a potential read-write edge in write graph 202 from the node containing A to the node containing O. This potential edge (shown as a dashed arrow) indicates that a subsequent write or update of data object O to change its state will create a real edge, thereby establishing a flush order dependency between objects A and O. The direction of the arrow represents the flushing sequence in the flush order dependency. The arrow points from the node containing object A to the node containing object O (i.e., A.fwdarw.O) to represent that the application object A must be flushed before the data object O. The execute operation 192 reads the application state A.sub.2 and writes the application state A.sub.3. The node containing the object A in the write graph 204 is expanded to include the execute operation (i.e., Ex.sub.192) because the execute operation 196 writes application state A.sub.3. The node containing object O remains void of any operations. The write operation 194 reads application state A.sub.3 and writes the object state O.sub.2. The write operation is reflected in the write graph 206 by placing the notation W.sub.194 (i.e., write operation 194) in the node containing the data object O. Notice that the write operation 194 does not write the application state, and thus the write operation is not added to the node containing application A. The write graph 206 also shows a real read-write edge caused by the read and write operations 190 and 194. That is, the previous potential edge has now been converted to a real edge by virtue of the sequence of read-write operations 190 and 194. This read-write edge introduces a flush order dependency between application object A and data object O. To ensure correct recovery of the application, the cache manager must flush the application object A, thereby installing the read operation R.sub.190, prior to flushing the data object O. The read-write edge is indicated by a solid arrow, the direction of which indicates the flushing sequence in the flush order dependency. Here, the application object A must be flushed before the data object O and thus, the arrow points from the node containing object A to the node containing object O (i.e., A.fwdarw.O). The write operation 194 also introduces a potential edge in write graph 206 from the node containing O to the node containing A. This potential edge indicates that a subsequent write or update of data object A to change its state will create a real edge, thereby establishing a flush order dependency between objects A and O. The execute operation 196 reads application state A.sub.3 and writes application state A.sub.4. Since the execute operation 196 writes application object A, the application node A of the write graph 208 is expanded to include that operation (i.e., Ex.sub.196). The execute operation 196 does not write the data object state, and thus the execute operation is not added to the node containing data object O. The execute operation 196 introduces a real dependency between the data object O and the application object A, as indicated by the write-execute edge. This dependency arises because the data object state O.sub.2 can only be regenerated from values found in the output buffers at application state A.sub.3, which is about to change as a result of the execute operation 196. Since the write optimization technique eliminates logging of the write values to the stable log, the recovery manager must obtain those values from the output buffers of application state A.sub.3 to replay the write operation 194. To ensure correct recovery of the data object O, the cache manager must flush the data object O, thereby installing the write operation 194 which produces state O.sub.2, prior to flushing the application object A. The write-execute edge is indicated by the solid arrow pointing from the node containing O to the node containing A, thereby indicating an O.fwdarw.A flushing sequence in the flush order dependency. Unfortunately, the two dependencies between objects A and O are cyclic (i.e., A.fwdarw.O.fwdarw.A). As shown in the write graph 208, application object A must be installed before data object O (i.e., A.fwdarw.O) to ensure recovery of the application and the data object O must be installed before the application object A (i.e., O.fwdarw.A) to enable replay of the write operation 194. This cycle can only be handled in full by flushing both objects A and O simultaneously and atomically. This poses a problem. To break such cycles, the cache manager 66 assumes an active role by timely introducing "blind writes" that effectively preserve the state of data object on a log record. In a blind write operation, the current value of the data object O is written to the log in a manner similar to the general unoptimized write case discussed earlier in this disclosure. The blind write leaves the value of data object O unchanged, but writes an after-image of its value on the stable log. As a result, the data object O can be regenerated from this log record, rather than relying on regeneration of a specific state of the application object A. Accordingly, the dependency cycle is broken. This enables an ordered flushing sequence of first flushing the application object A and then flushing the data object O. That is, once the cycle is broken, the cache manager can atomically flush objects one-by-one, rather than having to flush multiple objects simultaneously and atomically. The way the cache manager identifies cycles and actively imposes blind writes is best understood in the context of the write graphs. The process, as it pertains to write graphs, involves three general steps. Also introduced is the "intermediate write graph," which is the graph formed before the cycles are collapsed. 1. Add each new operation to the intermediate write graph, either including it in a node with existing operations or giving it a node of its own. The intermediate write graph can have cycles. 2. Collapse nodes affected by cycles into a single node n (i.e. all intermediate write graph nodes of the strongly connected region are collapsed into a single write graph node.). The resulting node n has vars(n) consisting of multiple objects. 3. Remove all objects, but one, from the single node. This reduces vars(n) to containing a single object that needs to be flushed in order to install the operations of the node n. The removal of objects can be accomplished through normal write operations, or through a series of blind writes. These three steps result in a new write graph containing nodes p with vars(p) having a single variable that can be flushed by itself. The edges connecting these nodes impose an order to the flushing of the objects, but the need to atomically flush multiple objects is removed. Step 1: Build the Intermediate Write Graph The intermediate write graph is constructed by the cache manager 66 by performing the following steps for each operation: 1. Identify one or more objects that are both read and written by the operation., i.e. write(Op) intersection read(Op). 2. Intersect the object(s) of step 1 with each set of existing objects associated with a present write graph node n, i.e. objects in vars(n). 3. If all intersections are null, put the operation into its own node. 4. If an intersection is not null, merge all nodes with non-null intersections with the objects of step 1 into a single node. 5. Form edges between intermediate write graph nodes n and m based on when edges exist between the operations of ops(m) and ops(n) in the installation graph. 6. Remove the objects nx(Op)=write(Op)-read(Op) from vars(p) of any other node that currently contains them. This method is repeated as new operations are executed and the intermediate write graph is built one operation at a time in operation execution order. A more detailed construction of one exemplary cache manager, and an object table which tracks write dependencies in a manner which effectively handles multi-object nodes and blind write strategies, is described below with reference to FIGS. 18-23. Step 2: Collapse Intermediate Write Graph Cycles When a cycle is created, such as the cycle between the nodes containing A and O in the intermediate write graph 208 of FIG. 15, the affected nodes are collapsed into a single node. That is, all intermediate write graph nodes of a strongly connected region are collapsed into a single write graph node. Write graph 210 shows a combined node containing both objects A and O. This combined node contains the union of all operations and objects from the original two nodes. Collapsing intermediate write graph 208 results in the upper node of write graph 210. (The write graph is defined to be acyclic, while the intermediate write graph has cycles.) Step 3: Reduce Objects In Node to One Object Forming a combined node containing both A and O has not removed the dependency cycle; rather, both A and O must still be installed atomically together. To break the cycle so that variables can be flushed one by one, all but one object is removed from the node containing multiple objects. This can be done as a result of normal operation, or through a series of blind writes imposed by the cache manager. With continuing reference to FIG. 15, the read operation 198 involves reading both the data object state O.sub.2 and a new application state B.sub.1, and writing application state B.sub.2. The read operation 198 is reflected in the write graph 210 by addition of a node to contain object B and the inclusion of R.sub.198 (i.e., read operation 198) in that node. Additionally, the read operation 198 introduces a potential read-write edge from the node containing B to the node containing A, O. This potential edge indicates that a subsequent write or update of data object O to change its state will establish a flush order dependency between objects B and O in which the read operation 198 must be installed (by flushing object B) before installation of the operations 190-196. The write operation 200 reads the application state A.sub.4 and writes object state O.sub.3. The corresponding write graph 212 is expanded to include a third node which contains object O and W.sub.200 (i.e., write operation 200). This operation does not join the existing node containing A,O because write(200) intersect read(200) is s null. The potential read-write edge becomes a real "inverse write-read" edge as a result of this write operation 200. The read operation 198 (R.sub.198) has read the last version of O written by write operation 194 (W.sub.194). This means that a real flush order dependency now exists because data object O's state has been changed in the write operation 200. The flush order dependency dictates that the operation 198 in the node containing object B must be installed prior to the operations 190-196 in the node containing objects A, O. A second flush order dependency is also created by a read-write edge resulting from the write operation. In this dependency, the application object B must be flushed, thereby installing the read operation 198, prior to flushing the data object O. The purpose of the inverse write-read edge is to ensure that data object O is not exposed when the node with operations 190-196 has no predecessors. This permits the operations 190-196 to be installed by flushing only A. Notice that the result of write operation 200 removes data object O from the node containing operations 190-196. An object can only reside in one write graph node, which is the last node to write the object. Data object O is in nx(200) and hence is removed from the node containing operations 190-196. Here, the node containing write operation 200 is the last node to write object O, and hence, data object O resides only in that node. No subsequent operation can remove it from that node without also writing it. Because W.sub.194 and W.sub.200 both write data object O, and replay of W.sub.194 does not guarantee the ability to replay W.sub.200, there is an installation edge from W.sub.194 to W.sub.200. This edge results in a write graph edge from the node with operations 190-196 to the node with operation 200. There is also an edge from R.sub.190 to W.sub.200 so this is a case where a write graph edge results from two installation graph edges. This is a case in which an object is removed from a multi-object node as a result of normal operation. As a result of the write operation 200, the dependency lo cycle that existed in the intermediate write graph 208 is now broken. That is, a single object A can now be flushed to install all operations 190-196 in the node, including the write operation 194 that originally affected the data object O. In terms of the write graph, the write operation renders the data object O "unexposed" in the collapsed node of the write graph 212. An "unexposed" object of a write graph node is one that has a write operation for it in a succeeding node and no read operations following the current node that also do not follow the succeeding write. As a result, an unexposed object does not need to be flushed in order to install the operations in the preceding node that wrote that object as no succeeding operation needs the value that it wrote. Conversely, an "exposed" object in a node is an object that needs to be flushed to install the operations in the node that wrote that object. In the FIG. 15 example, the application object A is "exposed" in the collapsed node. FIG. 16 shows the corresponding log records for the sequence of operations 190-200 from FIG. 15. As a result of the log optimization technique, the log record for the write operation 194 does not contain the value written to the data object O (i.e., O.sub.2). Instead, the log record for write operation 194 contains only the data object identifier O, the data object O's state ID 2, the application object identifier A, its state ID 3, and the write operation W that resulted in data object state O.sub.2. FIG. 16 also shows another technique for reducing the number of objects in a multi-object combined node. The cache manager may not wish to wait for a subsequent write operation of one of the objects in the write graph node, such as write operation 200, because such operations cannot be foreseen and are not guaranteed to occur. Accordingly, the cache manager can impose its own write of an object in the multi-object node. The cache manager performs a "blind identity" write which writes the value of the object onto the stable log. FIG. 16 shows a blind write operation 216 which writes the values of the data object O at state 3, i.e., O.sub.3, to the log record. The blind write creates an after-image of the data object O on the log. That is, the blind write in this case is an identity write because the identical value of data object O, which is the same at both states 2 and 3, is written to the log. The state ID is stepped from 2 to 3 to maintain the convention introduced earlier in this disclosure. Once the value O.sub.3 is posted to stable log and all nodes that precede the node with operations 190-196 have been installed, i.e. the node with R.sub.198, the cache manager is free to flush the application object A, thereby installing operations 190-196. If the system crashes after object A is flushed and application state A.sub.3 is irretrievably lost, subsequent operations involving the data object O at state 3, can be replayed using the values O.sub.3 on the stable log, rather than the values from the output buffers of a regenerated application state A.sub.3. Blind writes come at a cost of writing larger amounts of data to the log, but this cost is minimal in comparison to the advantages gained by the write optimization techniques in which a high percentage of writes do not result in posting entire object values to the log. The cache manager-imposed blind write has the same affect of removing an object from the collapsed node in the write graph as a normal write operation. But such a write is under the control of the cache manager, and hence the cache manager can use such writes to help it manage the cache. FIG. 17 illustrates the effect of a blind write on the combined node in write graph 210 of FIG. 15. In a blind write, the cache manager posts the current value of the data object O to the stable log. This is represented in a write graph 211 as a new node containing the object O and a blind write operation (i.e., W.sub.216). Since the value of O is written to the log, the data object O does not need to be flushed concurrently with the flushing of application object A, and hence the O.fwdarw.A dependency is removed. The blind write thereby breaks the dependency cycle. In write graph terms, the data object O is no longer "exposed" in the combined node and is withdrawn from that node. The cache manager no longer needs to flush object O as part of the installation of the operations 190-196 in the combined node because it does not matter what object O's value is. The cache manager need only flush the exposed application object A to install all operations in the node, including those that had written data object O, even though data object O is not flushed. It is noted that, for combined nodes having more than two objects that require simultaneous flushing, the cache manager blind writes all but one object to the stable log. FIG. 18 shows a cache manager 220 with an object table 222, which are configured to track dependencies, including cyclic dependencies, and to manage the object flushing sequence to properly handle the dependencies. The object table 222 holds a list of objects that are presently stored, and in some cases recently stored, in the volatile cache. These objects may be application or data objects. The object table 222 shows an entry 224 for the data object. The entry is organized in data structure 226 having an object identifier field 228, a dirty flag field 230, a cache location field 232, and a node field 234. The node field contains an index to a separate node list 236 of intermediate write graph nodes. These nodes all write to the object with entry 224. Given that operations write at most one object, an operation can always be associated with exactly one entry in the object table, i.e. the entry whose object it wrote. All intermediate write graph nodes also have operations that write exactly one object. The node list is a list of these intermediate write graph nodes containing operations that write the object table entry. The node list 236 is a data structure containing various entries 1, . . . , N. Each entry contains a "Last" field 238 that holds data indicating the last update to the object O as a result of the operations of the node. The "Last" field 238 is set to the state identifier of the object at its last update by operations of the node described by node list entry 236. The node list entry also has a node identifier 240 to identify the write graph node into which this intermediate graph node has been collapsed should the node be part of a cycle (a strongly connected region) in the intermediate write graph. In this implementation, the node ID field 240 is an index to a separate node table 246. This data structure contains an entry 248 for write graph nodes that are produced as a result of an intermediate graph collapse. Each such write graph entry has a list of all intermediate graph nodes from which it is constituted via a collapse. These intermediate write graph nodes are identified by pairs <O. O.sid>. As explained above with reference to FIG. 15, an object can be written by operations in more than one node. The write graph 212 (FIG. 15), for example, shows that data object O, while only requiring flushing in one node, is updated by operations in two different nodes. The node ID fields 240 of all intermediate write graph nodes are "null" until a cycle exists. When a cycle arises, the node ID of the intermediate write graph nodes in the cycle are set to the write graph node identified by entry 248 in the node table 246, which includes the intermediate nodes of the cycle. Each node list entry in node list 236 further has a predecessor list 242 and a successor list 244. These lists are similar to those described above with respect to FIG. 11 in that they reference predecessor or successor write nodes (in this case, intermediate write graph nodes) which should be flushed before or after the subject node. Each item in the predecessor list 242 or successor list 244 must identify a predecessor or successor node. Since an object can be written by operations in multiple write graph nodes, the object's identifier is no longer sufficient for this node identification. The node can be identified, however, via a pair <object id, state id>, where the state ID is that of the Last attribute for the node at the time the write graph edge was formed. (This can be used in a look up that finds the node with the smallest Last value that is greater than this state ID.) Thus, a node on a predecessor or successor list can be represented by: N.sub.x =<Object ID of X, State ID of X> In addition, as in FIG. 11, real and potential predecessors need to be distinguished. This is done by storing with the predecessor list entry the state ID of the current object O of entry 226 that was read by the first operation causing the edge described by the predecessor entry. The state ID is denoted by firstr(N.sub.x,O). Thus, a predecessor list entry is represented by the following format: <firstr(N.sub.x,O),N.sub.x > The node being referenced in the predecessor and successor lists is an "intermediate node," not the write graph node. Multiple intermediate nodes may comprise a write graph node, which is found from the entries via the Node ID field 240. A successor list entry need only identify the successor intermediate node by a pair <object id, state id>. The entries 1-N in the node list 236 are ordered according to the update order sequence. This sequence is readily derived in the data structure by placing the entries in ascending order according to the state identifier in their "Last" field 238. The cache manager 220 uses the object table 222 to track the flush order dependencies that arise in both read and write operations. Consider the case of a read operation. FIG. 19 shows the read operation 190 from FIG. 15 in more detail. Read operation 190 involves reading both application state A.sub.1 and object state O.sub.1, and writing application state A.sub.2. The intermediate write graph fragment 202 for this operation includes a node 250 containing A and the read operation R.sub.190, and a node 252 containing O without any operations. The read operation 190 results in a potential edge from the node containing A to the node containing O, indicating that a subsequent write or update of data object O to change its state will create a real edge. As a result of the read operation, the cache manager creates a node entry 254 for the data object O's node list 236 which recognizes object A as a predecessor. Entry 256 is only a "potential" node list entry at this point since a write graph node technically only exists when uninstalled operations write into variables. That is, the node containing data object O becomes a write graph node in write graph 206 following the write operation 194. A node is shown in FIGS. 15 and 19 to help describe how data object O is handled. More particularly, node list entry 256 has a "Last" field 238 set to "1," the state ID of data object O's last update, and a node ID field set to "null", indicating that this node has not taken part in a "collapse". The predecessor list 242 is updated to reference the predecessor application object A. This node reference is includes the predecessor object ID "A," and A's state ID of 2. In addition, to determine when this edge is real or potential, the node reference includes "firstr(<A,2>,O)," indicating the state ID of data object O when first read by application object A in this node, which is 1. The edge is real only if data object O has a state ID that is greater than 1. Nothing is placed in the successor list 244. Similarly, the cache manager creates a node entry 256 for the application object A's node list which recognizes data object O as a successor. Entry 256 contains in its "Last" field 238' the state ID of "2" for the application object A's last update and in the node ID field 240' it contains the value null, indicating that this intermediate write graph node is not part of a cycle and hence has not taken part in a collapse. The successor list 244' of entry 256 is updated to reference the successor data object O. This successor reference to identify the node for object O includes the successor object ID "O." and O's state ID of 1. Nothing is placed in the predecessor list 242'. Next, consider the case of the write operation. FIG. 20 shows the write graph 208 following the execute operation 196 and write operation 194 from FIG. 15 in more detail. Write operation 194 involves reading application state A.sub.3 and writing object state 2. Execute operation 196 involves reading application state A.sub.3 and writing application state A.sub.4. The write graph 208 as a result of this operation includes the node 251 containing A and the node 253 containing O. The write operation 194 represented in node 253 changed the data object state from state O.sub.1 to state O.sub.2, thereby changing the previous "potential" edge to a "real" edge (as represented by the solid arrow). This correlates to object A becoming a real predecessor to object O. Additionally, recall in the write graph 206 of FIG. 15, a second potential edge had been created as a result of the write operation 194 because data object O, to be replayed, must obtain values from application object A at state 3. This successor edge becomes real in write graph 208 of FIG. 20 because the downstream execute operation 196 changes the application state from state 3 to state 4. Thus, the write graph 208 in FIG. 20 shows two real edges between the nodes 251 and 253. The old entry 254 representing a potential write graph node for data object O is replaced by a real write graph node list entry 262. Entry 262 for data object O is created in response to the writing of data object O at operation 194. The entry 262 has a "Last" field 238" set to the object O's state ID following the write operation 194 (i.e., state ID=2), and a node ID field 240" set to null. The predecessor list 242" in entry 262 includes the same reference to predecessor object A as is contained in the predecessor list 242 in entry 254. The successor list 244" in entry 262 is updated to reference the successor object A. This reference includes the successor object ID "A" and A's state ID of 3. Whether a successor is considered "potential" or "real" has little impact. When the predecessor is flushed, the predecessor is removed from its successors' predecessor list entries, regardless of whether it is real or potential. With respect to the node list entry 256 for application object A, the "Last" field 238' has been updated to reflect a state 4 since this is the state at the execute operation 196. (FIG. 20 shows the data structures after this operation, but before the collapse of the cycle that is now present.) The cache manager also updates the predecessor list 242' of the node list entry 256 for application object A to reference the "potential" predecessor object O. This node reference includes the predecessor object ID "O," and O's state ID of 2. In addition, to determine when this edge is real or potential, the node reference includes "firstr(<O,2>,A)," indicating the state ID of application object A when first read to write the data object O at state 2, which is a state ID of 3. The edge is real only if application object A has a state ID that is greater than 3. FIG. 20, because it shows the write graph 208 after the execute operation Ex.sub.196, shows the edge as real, with the Last field of 256 set to 4. Notice that the node list entry 256 for application object A references node list entry 262 of data object O as both a predecessor and a successor. This correlates to cycle dependency in that the data object O must be flushed both before (or not later than) and after (or not earlier than) application object A. The cache manager recognizes this cyclic condition when it occurs, or when the cache manager goes to flush the application object A. For purposes of continuing discussion, suppose the cache manager decides to flush the application object A. The cache manager proceeds down A's node list, which contains the single entry 256, and discovers the cycle dependency. When a cycle between the intermediate write graph nodes 251 and 253 is discovered, the nodes 251 and 253 are collapsed into a single node. FIG. 21 shows a write graph 209 having a combined write graph node 255 formed by collapsing nodes 251 and 253 into one node following the execute operation 196 (i.e., EX.sub.196). The node ID field 240" of object O's node list entry 262 is switched from "null" to reference an entry 257 in the node table 246. Additionally, the node ID field 240' of object A's node list entry 256 is changed from "null" to reference the entry 257. The node table entry 257 lists all intermediate graph nodes (identified by pairs <Object, Object State ID>) from which it is constituted via the collapse. In this example, the node table entry 257 identifies the node 251 as <A, 4> and the node 253 as <O, 2>. To break the cycle dependency and flush the object A by itself, the cache manager first installs all write graph nodes preceding the object A. In this case, the only real predecessor node (which is a node of the intermediate write graph) contains object O, which forms the cycle dependency with A and hence is to be flushed simultaneously with the application object A. The cache manager then blindly writes the data object O listed in the predecessor list 242' of object A's node list entry 256 to the stable log. That is, the values of the data object at state 2 (i.e., O.sub.2) are posted to the stable log. This is shown in FIG. 16 as the blind write 216, which results in a log record containing the value O.sub.2. FIG. 22 shows the blind write operation 216 of data state O.sub.3 and a corresponding write graph 211. The write graph 211 contains three nodes: a node 259 containing exposed object A and unexposed object O, a node 261 containing exposed object B, and a node 263 containing exposed object O. As a result of the write operation 216, a second entry 264 is added to the node list for data object O. This second entry 264 has a last field 238"" set to a state ID of 3, a node ID field 240"" set to null, a predecessor list field 242"" set to reference the node 261 containing application object B as a real predecessor node, and a successor list field 244"" set to null. The node list entry 256 for object A is also updated following the write operation 216. The last field 238' has been updated to A's last state ID of 4, and the predecessor field 242' is updated to identify the node 261 containing application object B as a predecessor node. Notice that the node ID fields in A's node list entry 256 and O's node list entry 262 remaining pointing to entry 257 in the node table 246. The cycles have not yet disappeared. The node for data object O in the cycle is no longer the last node for object O, so object O is not in vars(257). But the operations that previously wrote data object O are still in node 259, and this is what is captured by having the node IDs continue to reference 257. The blind write operation 216 rendered object O "unexposed" in node 259 and creates a new intermediate write graph node 263 for data object O. A node list entry 266 for the application object B is also shown in FIG. 22. This entry 266 reflects the node 261 that was created by the read operation 198 in FIG. 16, prior to the blind write operation 216. The object B's node list entry 266 has a last field 238'" set to B's last state ID of 2, a node ID field 240'" set to null, a predecessor list field 242'" set to null, and a successor list field 244'" set to identify the nodes 259 and 263. Notice that the predecessor list field 242' in object A's entry 256 still contains reference to the data object O. Predecessors are only removed when a flush occurs, and not as a result of the blind write operation 216. This is because there can be other operations on other objects that continue to depend on the prior version of the just logged object. However, the blind write does remove the blind written object O from the objects that need to be flushed simultaneously with object A. Suppose the cache manager wishes to flush application object A. Before doing that, the node containing A must not have predecessors in the write graph. Thus, the cache manager must first flush B to remove B's node 266 from the write graph. Next, the cache manager flushes the application object A, thereby installing the operations 190-196 contained in node 259 of FIG. 22, which is represented by node table entry 257 of FIG. 21. FIG. 23 shows the results of flushing application object A. The object O's node list entry 262 which contains reference to the node 259 via node table entry 257 that it references via its node ID field is removed as these states are now installed. The successor list field 244' in A's entry 256 is updated to remove all successors since A has now been installed. That the flushing of A leaves it's node list entry 256 with no successors. Accordingly, this flushing operation removes the intermediate graph cycle dependency as the node list entry 256 for application object A no longer contains reference to data object O in either the successor or predecessor list fields. The write optimization techniques described in this section are beneficial because they eliminate having to always post the written values to the log. This greatly reduces the processing time cost during normal operation, at the expense of more costly recovery processing. With the optimization, the log only contains information to reference its source object and the state ID of the values that are written. While this reduces the a of data to be logged, the write optimization techniques introduce dependencies between objects, and often troubling cycle dependencies. The cache manager tracks dependencies via an object table and is configured to recognize cycle dependencies. When a cycle dependency is realized, the cache manager initiates a blind write of one or more objects involved in the cycle to place the object's values on the stable log. This step breaks the cycle. Thereafter, the cache manager flushes the objects according to an acyclic flushing sequence that pays attention to any predecessor objects that first require flushing. Recovery Optimization During recovery, the database computer system can invoke a conventional recovery manager to recover the application state and object state at the instance of the crash. The conventional recovery manager retrieves the most recently flushed data objects and application objects in the stable database. The recovery manager . then replays the stable log, beginning at a point known to be earlier than the oldest logged operation that was not yet installed. For this conventional physiological operation recovery, the recovery manager compares the state ID of each logged operation in the stable log with the state ID of a retrieved data object or application object. If the state ID of the logged operation is later than the state ID of the stable object, the recovery manager redoes that logged operation. FIG. 24 pertains to a conventional recovery approach that can be used in conjunction with aspects of this invention. FIG. 24 shows an excerpt from a stable log, referenced generally as number 270, having a series of log records posted as a result of computer application operations. For purposes of discussion, assume that the log records in log record 270 pertain only to data object O and application object A. Only log records for data object O are described. The log excerpt shows five log records 272-280 pertaining to operations that affect data object O. The first log record 272 contains the object ID "O" and state ID "n" to reflect that the data object O was written or updated to a state tagged with a state ID of "n." Two subsequent log record 274 and 276 reflect that the data object O is written two more times, at states n+g and n+h. A fourth log record 278 reflects that the entire value for the data object O at state n+h (i.e., O.sub.n+h) is written to the stable log, as is the case for a blind write operation, at a state ID of "n+i". Each log record is assigned a log sequence number (LSN). The LSN is a monotonically increasing number that is tagged to each log record to identify the order in which the log records are created in the log. Typically, the LSN is used as the state ID, making the state ID and LSN the same. The LSN for the log records 272-278, for instance, are n, n+g, n+h, and n+i. Suppose that the cache manager flushes the data object at its state "n" (i.e., O.sub.n) to the non-volatile database. This event is recorded as log record 280 that identifies the data object O as having been flushed. All log records for the data object O that precede log record 272 are no longer needed for replay during recovery. In fact, log record 272 is not really needed for replay because it simply identifies the exact object state that is present in the database. Rather, the first meaningful log record for recovery purposes is the first log record reflecting an operation that updates the data object O, thereby changing its state, without the updated data object O being flushed to install the operation. In this example, the first meaningful log record is record 274. At the time that data object O is flushed, the cache manager marks object O as clean (the dirty flag is reset) in the cache. When O is updated at log record 274, the cache manager sets a recovery log sequence number (rLSN) to identify the log record 274 as the starting point for replay of object O during recovery. Each object has its own rLSN. In this example, data object O has an rLSN and application object A has a separate rLSN (not shown). During recovery, the recovery manager examines the last checkpoint record on the stable log, which contains initial values of rLSNs for all dirty objects as of the time of the checkpoint. Subsequent logging of flushes merely updates which objects are clean or dirty and advances rLSNs as these changes occur. Alternatively, the checkpoint record can indicate the value of the minimum rLSN, so that the individual rLSNs can be recomputed bas | ||||||
