WO1994012889A1 - Method for on-line diagnosis for distributed network systems - Google Patents

Method for on-line diagnosis for distributed network systems Download PDF

Info

Publication number
WO1994012889A1
WO1994012889A1 PCT/US1993/011652 US9311652W WO9412889A1 WO 1994012889 A1 WO1994012889 A1 WO 1994012889A1 US 9311652 W US9311652 W US 9311652W WO 9412889 A1 WO9412889 A1 WO 9412889A1
Authority
WO
WIPO (PCT)
Prior art keywords
node
nodes
testing
fault
pkt
Prior art date
Application number
PCT/US1993/011652
Other languages
French (fr)
Inventor
Ronald P. Bianchini, Jr.
Original Assignee
Carnegie Mellon University
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Carnegie Mellon University filed Critical Carnegie Mellon University
Priority to EP94902483A priority Critical patent/EP0672258A4/en
Priority to AU56842/94A priority patent/AU5684294A/en
Publication of WO1994012889A1 publication Critical patent/WO1994012889A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/22Detection or location of defective computer hardware by testing during standby operation or during idle time, e.g. start-up testing
    • G06F11/2273Test methods

Definitions

  • An on-line adaptive distributed system level method for diagnosing general topology networks and, in particular, a method for a network in which tests performed by fault free network nodes produce accurate results and test performed by faulty nodes produce arbitrary results.
  • Distributed on-line diagnosis methods are known. For example, in one such system each node of a distributed system is capable of diagnosing the state of all system resources, based on locally maintained information. This method operates correctly in the in the presence of dynamically occurring fault events. This method is prohibitive for implementation in practical systems due to high overhead.
  • the overhead includes inter-node testing and messages required to distribute diagnosis information.
  • Adaptive testing methods have addressed the costs of redundant tests required to accommodate multiple faults with a fixed testing assignment.
  • An adaptive testing method was developed that is executed by a central observer and issues only those tests required for diagnosis.
  • a distributed adaptive testing was devised where testing decisions are made locally by the nodes of a distributed network. The former method executes off-line, requiring that no fault events occur during algorithm execution and the latter method requires a fully connected network. The latter method requires the minimum overhead to perform the system-level diagnosis task.
  • Leader election algorithms are based on distributed spanning tree construction. That work has resulted in several algorithms with lower complexity. However, these diagnostic algorithms require a stable network environment during execution and are thus not directly applicable to on-line diagnosis.
  • the present invention provides periodic testing and allows dynamic failure and repair of nodes and links.
  • the invention provides an on-line adaptive distributed diagnostic system for use in arbitrary networks and executes periodically in passive phase and active phase.
  • the diagnostic system of the present invention comprises a network having N nodes where N is an integer equal to or greater than 3.
  • N is an integer equal to or greater than 3.
  • Each of the network nodes is assumed to be capable of executing the algorithms of the present invention and each of the nodes is in communication with at least one other node through a network link.
  • the present invention also assumes the PMC fault model [IEEE Transactions on Electronic Computing E-C-16(12) Dec. 1967 p. 230-237] Moreover, the nodes can be arbitrarily connected. In the present invention, all nodes are diagnosed correctly in the presence of node and link failures.
  • the diagnostic algorithm constructs a testing assignment that contains a directed path from every fault- free node to every remaining node, providing the network is connected. If the network is disconnected, the invention operates correctly in each connected component.
  • the diagnostic algorithm of the present invention executes in two phases: passive and active.
  • passive phase a fixed testing assignment is utilized.
  • the testing assignment guarantees that any fault event is detected by at least one fault-free node.
  • the active phase is initiated at the detection of a fault event.
  • the fault-free nodes coordinate the construction of a new testing assignment and update the current diagnosis. Once the testing assignment is constructed the method reverts to its passive phase.
  • the method detects any fault event that occurs during either passive or active phases.
  • the active phase requires at most 0(N' L ) messages and incurs a diagnosis latency of O(N).
  • Previous on-line algorithms require the same 0(N 2 ) messages but have 0(N 2 ) diagnosis latency.
  • Other off-line algorithms require at most 0(Nlog 2 N) messages with diagnosis latency of 0(N), but requires off- line execution.
  • Each node N has a unique identification number, nodeid, and maintains the total number of nodes in the network, nodenum, as a constant.
  • the method can be modified for a variable number of nodes, by incorporating the appropriate data structures, i.e. linked lists instead of arrays, and taking appropriate action when information concerning a new node is received.
  • the primary data structure used in the present invention is an array of event time stamps, event, that is used to order events.
  • the event array contains nodenum entries, one for each node in the network. Node n. increments its time stamp, event[i], whenever a new fault event is detected by n..
  • Each node maintains a diagnosis array, containing a flag for each node, identifying the node as either "FaultFree” or "Faulty”.
  • Inter-node messages include the following packet data structure: an event array, pkt.event; a pkt.from array that records the predecessor of each node during packet propagation; the pkt.topology array that contains a potential final testing assignment; and the pkt.istested array that identifies whether a faulty node is currently tested in the assignment.
  • Packets The present invention utilizes packets to distribute and coordinate information between nodes.
  • a packet is termed complete after it traverses all fault- free nodes and returns to its root node.
  • the path traversed by completed packets determines the testing assignment.
  • Each packet traverses the network using a depth-first search methodology which results in a tree propagation path.
  • the propagation path is reconstructed using pkt.from.
  • test array identifies neighbors to test
  • n x is non-visited neighbor on topology
  • Step 2 The StartEventPacket procedure is executed and initiates the active phase.
  • the StartEventPacket procedure increments the current node's event array entry in Step 1, and initiates a new packet.
  • the packet includes the most current event array from the node (Step 2 ) , a null proposed testing assignment (Step 3), since the packet has not yet generated the current network topology, and a cleared packet propagation path (Step 4).
  • the packet is forwarded to a neighboring fault-free node in Step 5.1.
  • the active phase of the invention is continued at each node by the ReceivePacket procedure that is executed when the node receives a packet.
  • the parent of the current node is recorded in the packet during its first visit to the node.
  • Step 2 each entry of the node and packet event arrays are compared, and both are set equal to the maximum value.
  • Step 3 The suggested testing assignment is cleared in Step 3 if the packet event array has been updated.
  • Step 4 the testing assignment is set to the packet propagation path, if the packet is the most current packet received by this node.
  • a "tie breaking" strategy is required, as shown in Appendix A, for two packets with the same event arrays from different root nodes.
  • the packet is propagated in Step 5 using a depth-first search method.
  • Step 6 is executed once the packet has completed, such that it has propagated to all fault-free nodes and returned to its root node.
  • a new packet with the current event array is propagated to attempt to set the testing assignment.
  • the active phase terminates once a packet completes that is not updated. The traversal of that packet sets the final testing assignment.
  • Step 5.2 of the StartEventPacket procedure and Step 5.5 of the ReceivePacket procedure a test of the node to receive the current packet is added. These tests are added during the active phase to guarantee that additional fault events are detected. All fault events are detected in the passive phase, since every node is tested in the testing assignment. However, once a fault event occurs and the active phase is started, all nodes are not necessarily tested. Thus, a packet that is required to complete in the active phase can be transmitted to a non-tested node, which subsequently fails and goes undetected, resulting in packet loss. This problem is avoided by adding tests, such that there is always a testing path from the root of any packet with new information to that packet.
  • the execution phase at the fault event is considered. All fault events must be detected during the passive phase since the testing assignment forms a tree of the network nodes. For any set of nodes included in a fault event, there is at least one fault-free node that is testing a node in the fault set. All fault events are shown to be detected during the active phase, since at least one packet is generated during the active phase and that packet traverses a spanning tree of the fault-free nodes. Every node that receives a packet eventually forwards that packet to all of its fault-free neighbors, implying a test of all of its neighbors.
  • the active phase must complete after a fault has been detected due to the augmentation of the testing assignment described above.
  • the active phase does not complete properly if the packet with the newest fault event array does not complete.
  • a packet does not complete if it is forwarded to a node that fails in an undetected fashion before it can propagate the packet.
  • the method considering a packet that is started with a new fault event entry as a result of a detected fault, the method always adds tests on the propagation path of that packet ensuring that either the packet completes or a new node failure on the packet propagation path is detected, causing the active phase to be continued. Additional testing is not required for packets with only old event entries since a packet with newer information must have previously been propagated.
  • the active phase completes.
  • the current diagnosis and passive phase testing assignment must be ' correct at completion, since all fault-free nodes utilize the same assignment included in the packet with the newest event array for calculation.
  • An analysis of the present invention is provided in terms of its communication overhead, measured as message count, and diagnosis latency, measured in rounds.
  • a round is defined as the time required by a node to process and forward a received message. Transmission time is assumed to be negligible.
  • Diagnosis latency is the delay from fault detection to correct diagnosis. The procedure is evaluated for steady state and dynamic behavior for the worst case performance bounds, for message count, test count, and diagnosis latency for a single node failure and subsequent repair. A description of the worst case performance is set out below.
  • the passive phase is executed. Passive phase execution requires 0 messages and at most 2N tests, since the testing assignment is limited to twice the number of edges in a tree.
  • the active phase is entered.
  • the number of messages that can simultaneously exist in the active phase is limited to p, the number of nodes that detect the fault event.
  • the active phase correctly diagnoses all node failures in the presence of node and link failures.
  • the packet propagate algorithm routes a packet around faulty links by attempting to forward a packet to a node at all fault-free neighbors until the node is included in the packet propagation path.
  • the passive phase does not operate correctly with link failures, since faulty nodes are tested by only one fault-free neighbor. If that link remains faulty when the node is repaired, the repair is undetected. Link failures are tolerated by removing the istested array and requiring a faulty node to be tested by every neighbor.
  • the procedure diagnoses unreachable nodes as faulty.
  • every node correctly diagnoses all nodes in its connected component; the remaining unreachable nodes are currently diagnosed faulty.
  • Unreachable nodes can be distinguished from faulty nodes by forwarding the istested array with the final active phase packet.
  • the testing assignment utilized during the passive phase can be any strongly connected graph, instead of a tree, reducing the number of tests required during the passive phase to the range from N to 2N. This is accomplished by forwarding any strongly connected testing assignment in pkt.topology rather than the previous packet propagation path.
  • a Hamiltonian cycle is the lowest cost strongly connected graph, requiring N tests.
  • the 0(N 2 ) total message bound may be reduced by considering partial event comparison.
  • int nodenum /*total number of nodes*/ int nodeid; /*current node's id number*/ int event[nodenum] ; /*current event times*/ flag diagnosis[nodenum] oneof ⁇ FaultFree, Faulty); flag testsfnodenum] oneof ⁇ FaultFree, Faulty, NoTest); int testrootid; /*tie breaker for updating tests*/ struct ⁇ int rootevent; /*event of root node at start*/ int event[nodenum] ; /*collected event times*/ int from[nodenum] ; /*records packet propagation path*/ int topology[nodenum] ; /*topology for nodes to set tests*/ char istested ⁇ nodenum] ; /*is faulty node tested*/ ⁇ pkt;

Abstract

An on-line adaptive distributed diagnostic method for use in an arbitrary network comprised of N nodes, where N is greater than or equal to 3. The algorithms of the present invention provide on-line diagnosis in the presence of node and link failure. In the network, each node is capable of executing an algorithm used in the diagnostic method to update a packet which communicates between network nodes.

Description

TITLE
METHOD FOR ON-LINE DIAGNOSIS FOR DISTRIBUTED NETWORK SYSTEMS
Field of Invention
An on-line adaptive distributed system level method for diagnosing general topology networks; and, in particular, a method for a network in which tests performed by fault free network nodes produce accurate results and test performed by faulty nodes produce arbitrary results.
Background of the Invention
Distributed on-line diagnosis methods (algorithms) are known. For example, in one such system each node of a distributed system is capable of diagnosing the state of all system resources, based on locally maintained information. This method operates correctly in the in the presence of dynamically occurring fault events. This method is prohibitive for implementation in practical systems due to high overhead. The overhead includes inter-node testing and messages required to distribute diagnosis information.
Adaptive testing methods have addressed the costs of redundant tests required to accommodate multiple faults with a fixed testing assignment. An adaptive testing method was developed that is executed by a central observer and issues only those tests required for diagnosis. In another method, a distributed adaptive testing was devised where testing decisions are made locally by the nodes of a distributed network. The former method executes off-line, requiring that no fault events occur during algorithm execution and the latter method requires a fully connected network. The latter method requires the minimum overhead to perform the system-level diagnosis task.
The latter adaptive method is implemented in a network of over 200 workstations at Carnegie Mellon University. By distributing its execution to the fault- free workstations, it has executed continuously for over 1.5 years, even though no single workstation was fault- free for the entire period. See U.S. Pat. No. (S.N. 07/ ) assigned to the assignee of the present invention.
Recently, a method was presented for on-line execution in arbitrary topology networks. Additionally, considerable work has been done in other distributed methods that can be applied to distributed diagnosis, including leader election. Leader election algorithms are based on distributed spanning tree construction. That work has resulted in several algorithms with lower complexity. However, these diagnostic algorithms require a stable network environment during execution and are thus not directly applicable to on-line diagnosis.
Accordingly, it is an objective of the present invention to provide on-line adaptive distributed diagnosis in arbitrary networks in the presence of both node and link failures. It is a further objective of the present invention to provide a diagnostic method which has lower overhead and better execution bounds.
Summary of the Invention
Generally, the present invention provides periodic testing and allows dynamic failure and repair of nodes and links. In particular, the invention provides an on-line adaptive distributed diagnostic system for use in arbitrary networks and executes periodically in passive phase and active phase.
The diagnostic system of the present invention comprises a network having N nodes where N is an integer equal to or greater than 3. Each of the network nodes is assumed to be capable of executing the algorithms of the present invention and each of the nodes is in communication with at least one other node through a network link. The present invention also assumes the PMC fault model [IEEE Transactions on Electronic Computing E-C-16(12) Dec. 1967 p. 230-237] Moreover, the nodes can be arbitrarily connected. In the present invention, all nodes are diagnosed correctly in the presence of node and link failures. The diagnostic algorithm constructs a testing assignment that contains a directed path from every fault- free node to every remaining node, providing the network is connected. If the network is disconnected, the invention operates correctly in each connected component. Other advantages of the present invention will become apparent from the following detailed description of presently preferred embodiments..
Detailed Description
The diagnostic algorithm of the present invention executes in two phases: passive and active. In the passive phase, a fixed testing assignment is utilized. The testing assignment guarantees that any fault event is detected by at least one fault-free node. The active phase is initiated at the detection of a fault event. The fault-free nodes coordinate the construction of a new testing assignment and update the current diagnosis. Once the testing assignment is constructed the method reverts to its passive phase.
The method detects any fault event that occurs during either passive or active phases. The active phase requires at most 0(N'L) messages and incurs a diagnosis latency of O(N). Previous on-line algorithms require the same 0(N2) messages but have 0(N2) diagnosis latency. Other off-line algorithms require at most 0(Nlog2N) messages with diagnosis latency of 0(N), but requires off- line execution.
Data Structures of the Present Invention. Each node N has a unique identification number, nodeid, and maintains the total number of nodes in the network, nodenum, as a constant. The method can be modified for a variable number of nodes, by incorporating the appropriate data structures, i.e. linked lists instead of arrays, and taking appropriate action when information concerning a new node is received.
The primary data structure used in the present invention is an array of event time stamps, event, that is used to order events. The event array contains nodenum entries, one for each node in the network. Node n. increments its time stamp, event[i], whenever a new fault event is detected by n..
Each node maintains a diagnosis array, containing a flag for each node, identifying the node as either "FaultFree" or "Faulty". The tests array contains expected tests results. For example, n. stores tests[ j]="FaultFree" , if a test of nj by n^ is expected to
yield a fault-free result. Expected results are "FaultFree", "Faulty" and "NoTest", if n. is not expected to test n ..
Inter-node messages include the following packet data structure: an event array, pkt.event; a pkt.from array that records the predecessor of each node during packet propagation; the pkt.topology array that contains a potential final testing assignment; and the pkt.istested array that identifies whether a faulty node is currently tested in the assignment.
Packets. The present invention utilizes packets to distribute and coordinate information between nodes. A packet is termed complete after it traverses all fault- free nodes and returns to its root node. The path traversed by completed packets determines the testing assignment. Each packet traverses the network using a depth-first search methodology which results in a tree propagation path. When a packet that is transmitted from n. arrives at n. for the first time, n. records pkt.from[i ]=j. After a packet traverses every fault-free node, the propagation path is reconstructed using pkt.from.
Description of Invention. An outline of the preferred algorithm of the present invention is given below:
/*Passive phase. Periodically test assigned nodes*/ PeriodicTestf )
1. test array identifies neighbors to test;
2. if (result not expected) StartEventPacket() ;
/*Start active phase*/ StartEventPacket ( )
1. increment event[nodeid] ; /*increment my event time*/
2. pkt.event=event; /*set pkt event to current*/ 3. pkt.topology =-1; /*testing assign, unknown*/
4. pkt.from =-1; /*packet propagation path*/
5. if ( fault-free neighbor, nx){
5.1 Send pkt to nx; /*propagate packet*/
5.2 Add nx to tests array; /*continue testing nx*/ }
}
/*Continue active phase by propagating packets.*/ ReceivePacket(fromid) 1. if (pkt. from[nodeid]==-l)pkt.from[nodeid]=fromid;
2. maximize (pkt.event,event ) ; /*update event arrays*/
3. if (pkt.event is changed in 2) pkt. topology=-l ;
4. if (pkt.topology!=-1 ) set tests and diagnosis with pkt. topology; 5. if (pkt. !complete){ • /*not root node*/
5.1 if (pkt.topology ==-l)nx is a fault-free neighbor;
5.2 else nx is non-visited neighbor on topology; /*child*/
5.3 if (! nx)nx = pkt .from[ nodeid] ; / *parent*/ 5.4 Send pkt to nx; /*propagate packett*/
5.5 if (event is changed in 2) Add nx to test array; 6. } else if ((pkt.event has changed) | | (pkt.topology==-l ) {
6.1 pkt.event = event; /*latest event array*/
6.2 pkt. opology = pkt.from; ,/*testing assignment*/
6.3 pkt.from =-1; /*pkt propagate path*/ 6.4 Send pkt to neighbor in pk . topology;
} [" " means "there exists a " ] [ " " means "there does not exist " }
During passive phase operation, periodic tests are performed in the PeriodicTest procedure, no packets are transmitted and every node contains the most recent diagnosis array. A fault event is detected by a changed periodic test result in Step 2. The StartEventPacket procedure is executed and initiates the active phase. The StartEventPacket procedure increments the current node's event array entry in Step 1, and initiates a new packet. The packet includes the most current event array from the node (Step 2 ) , a null proposed testing assignment (Step 3), since the packet has not yet generated the current network topology, and a cleared packet propagation path (Step 4). The packet is forwarded to a neighboring fault-free node in Step 5.1.
The active phase of the invention is continued at each node by the ReceivePacket procedure that is executed when the node receives a packet. In Step 1 of ReceivePacket, the parent of the current node is recorded in the packet during its first visit to the node. In Step 2, each entry of the node and packet event arrays are compared, and both are set equal to the maximum value.
SUBSΠTUΓE SHEET (RULE 26) The suggested testing assignment is cleared in Step 3 if the packet event array has been updated. In Step 4, the testing assignment is set to the packet propagation path, if the packet is the most current packet received by this node. A "tie breaking" strategy is required, as shown in Appendix A, for two packets with the same event arrays from different root nodes. The packet is propagated in Step 5 using a depth-first search method. Step 6 is executed once the packet has completed, such that it has propagated to all fault-free nodes and returned to its root node. At completion, if the packet has been updated (pkt.topology=-l ) , a new packet with the current event array is propagated to attempt to set the testing assignment. The active phase terminates once a packet completes that is not updated. The traversal of that packet sets the final testing assignment.
Multiple Fault Events
In Step 5.2 of the StartEventPacket procedure and Step 5.5 of the ReceivePacket procedure a test of the node to receive the current packet is added. These tests are added during the active phase to guarantee that additional fault events are detected. All fault events are detected in the passive phase, since every node is tested in the testing assignment. However, once a fault event occurs and the active phase is started, all nodes are not necessarily tested. Thus, a packet that is required to complete in the active phase can be transmitted to a non-tested node, which subsequently fails and goes undetected, resulting in packet loss. This problem is avoided by adding tests, such that there is always a testing path from the root of any packet with new information to that packet. Thus, if a node fails along that path, it will be detected and the active phase is re-started. Ideally, all packets should be routed via the same tree in the active phase to minimize additional tests. However, since the final testing assignment is not fixed, tests are added on all paths taken.
Execution Correctness
The validity of the present invention is demonstrated as follows: First, all fault events are detected; and, second, when a fault event is detected, the active phase is initiated and completes, resulting in correct diagnosis and a valid testing assignment for the passive phase.
To demonstrate that all fault events are detected, the execution phase at the fault event is considered. All fault events must be detected during the passive phase since the testing assignment forms a tree of the network nodes. For any set of nodes included in a fault event, there is at least one fault-free node that is testing a node in the fault set. All fault events are shown to be detected during the active phase, since at least one packet is generated during the active phase and that packet traverses a spanning tree of the fault-free nodes. Every node that receives a packet eventually forwards that packet to all of its fault-free neighbors, implying a test of all of its neighbors.
Thereafter, the active phase must complete after a fault has been detected due to the augmentation of the testing assignment described above. The active phase does not complete properly if the packet with the newest fault event array does not complete. A packet does not complete if it is forwarded to a node that fails in an undetected fashion before it can propagate the packet. Thus, considering a packet that is started with a new fault event entry as a result of a detected fault, the method always adds tests on the propagation path of that packet ensuring that either the packet completes or a new node failure on the packet propagation path is detected, causing the active phase to be continued. Additional testing is not required for packets with only old event entries since a packet with newer information must have previously been propagated. Thus, within a bounded time after the last fault event, the active phase completes. At this point, the current diagnosis and passive phase testing assignment must be 'correct at completion, since all fault-free nodes utilize the same assignment included in the packet with the newest event array for calculation.
Execution Bounds
An analysis of the present invention is provided in terms of its communication overhead, measured as message count, and diagnosis latency, measured in rounds. A round is defined as the time required by a node to process and forward a received message. Transmission time is assumed to be negligible. Diagnosis latency is the delay from fault detection to correct diagnosis. The procedure is evaluated for steady state and dynamic behavior for the worst case performance bounds, for message count, test count, and diagnosis latency for a single node failure and subsequent repair. A description of the worst case performance is set out below.
During periods with no fault events, the passive phase is executed. Passive phase execution requires 0 messages and at most 2N tests, since the testing assignment is limited to twice the number of edges in a tree.
Once a fault event occurs, the active phase is entered. The number of messages that can simultaneously exist in the active phase is limited to p, the number of nodes that detect the fault event. The detecting nodes initiate packets sequentially, such that a new packet is added only after a previous packet completes a round. Diagnosis latency is determined by considering the last node to detect a fault event. That node initiates a packet that contains the newest event array entries at completion since there are no subsequent detections. That packet completes after 2N rounds and forwards another packet with the newest event array and potential testing assignment. That packet completes and all other nodes are updated by 4N rounds. The total message count from the last detection to the end of the active phase is 4pN. For node repair a single node detects the event, thus, p=l.
The number of tests required during the active phase increases over the passive phase due to the extra tests required for following packet propagation. In worst case, each of the p packets use N-l distinct edges resulting in 2pN worst case tests. The number of transient tests is expected to be significantly lower due to the ability for the packets to share edges. See Appendix A.6.
Extensions
The active phase correctly diagnoses all node failures in the presence of node and link failures. The packet propagate algorithm routes a packet around faulty links by attempting to forward a packet to a node at all fault-free neighbors until the node is included in the packet propagation path. The passive phase does not operate correctly with link failures, since faulty nodes are tested by only one fault-free neighbor. If that link remains faulty when the node is repaired, the repair is undetected. Link failures are tolerated by removing the istested array and requiring a faulty node to be tested by every neighbor.
As described above, the procedure diagnoses unreachable nodes as faulty. Thus, in a network that is disconnected by a fault event, every node correctly diagnoses all nodes in its connected component; the remaining unreachable nodes are currently diagnosed faulty. Unreachable nodes can be distinguished from faulty nodes by forwarding the istested array with the final active phase packet.
To improve performance, the testing assignment utilized during the passive phase can be any strongly connected graph, instead of a tree, reducing the number of tests required during the passive phase to the range from N to 2N. This is accomplished by forwarding any strongly connected testing assignment in pkt.topology rather than the previous packet propagation path. A Hamiltonian cycle is the lowest cost strongly connected graph, requiring N tests.
In addition, the 0(N2) total message bound may be reduced by considering partial event comparison.
Currently, all transmitted packets return to their root node and either terminate or restart as determined by a comparison of the entire packet and node event arrays. Alternatively, the packet can be terminated earlier, at other nodes in the network, if that node has currently forwarded a pacKet that supersedes part of the arrived packet event record. An additional complexity analysis is required.
While presently preferred embodiments of the invention have been described in particularity, it may be otherwise embodied within the scope of the appended claims.
A. Appendix
A.l Node Data Structures
int nodenum; /*total number of nodes*/ int nodeid; /*current node's id number*/ int event[nodenum] ; /*current event times*/ flag diagnosis[nodenum] oneof{FaultFree, Faulty); flag testsfnodenum] oneof{FaultFree, Faulty, NoTest); int testrootid; /*tie breaker for updating tests*/ struct { int rootevent; /*event of root node at start*/ int event[nodenum] ; /*collected event times*/ int from[nodenum] ; /*records packet propagation path*/ int topology[nodenum] ; /*topology for nodes to set tests*/ char istestedϊnodenum] ; /*is faulty node tested*/ }pkt;
A.2 Initialization Procedure lnitialize() /*executed at node start-up or repair*/ for (i=0; i<nodenum; i++) { event[i] = -1; /*init event times*/ if (i == nodeid) diagnosis[i] = FaultFree;
else diagnosisfi] = Faulty; /*all nodes faulty*/ if (node i is a testable neighbor) testsfi] = Faulty; else testsfi] = NoTest; /*test all neighbors*/
) )
A.3 Periodic Test Procedure
PeriodicTests( tests) /* perform periodic tests*/ for (i=0, i<nodenum, i++) if (tests[i] != NoTests) { result = oneof{FaultFree, Faulty) | result of test of node i ; if (result != tests[i]{ /*new fault event*/ tests[i] = result; StartEventPacket( ) ;
) ) )
A.4 Procedure to Start Packet at Fault Event StartEventPacket( ) /*start diagnosis procedure*/ event[nodeid] = event[ odeid] + 1, /*increment event time*/ for (i=0; i<nodenum; i++) { pkt.eventfi] = event[i]; /*set pkt events*/ pkt.from[i] = -1; /*clear packet path*/ pkt.topology[ i ] = -1; /*set pkt topology*/ pkt.f omfnodeid] = nodeid; /*nodeid is root*/
ForwardPacket(pkt, TRUE), /*start packet*/ )
A.5 Procedure to Update Tests
SetTests(pkt) for (i=0; i<nodenum; i++){ testsf i ]=NoTest; /*clear tests*/ if (pkt.topology[ i ] != -1) diagnosis[i] = FaultFree, else diagnosis[i] = Faulty; /*set diagnosis*/ if (pkt.topology[nodeid] != nodeid) /*not root node*/ tests[pkt.topology[nodeid] = Fault Free; /*test parent*/ for (i=0; i<nodenum; i++) if (node i is a neighbor) if (pkt.topologyf i ] == nodeid) { tests[i] = FaultFree, /*test child*/ ) else if ( (pkt.topology[ i ]==-1) && ( !pkt . istestedf i ] ) ) { testsfi] = Faulty; /*faulty neigh.*/ pkt.istested[ i ] = TRUE; )
A.6 Forward Packet Procedure char ForwardPacket (pkt , addtests) if (pkt.topology[nodeid]== -1){ if ( neighbor, neighid | ( (pkt.fromfneighid]==-l )
&& (testsfi] == FaultFree)) SendPacket(pkt, neighid); /*forward to child*/ else if ( fault-free neighbor, neighid | pkt.from[neighid]==-l){ SendPacket(pkt, neighid); /*forward to child*/ if (addtests) testsfneighid] = FaultFree; ) else if (pkt.from[nodeid] != nodeid)
SendFacket(pkt , pkt. fromfnodeid] ) ; /*return to parent*/ else return(FALSE) ; /*completed root*/ ) else { if ( neighbor, neighid | ( (pkt.from[ neighid]==-l)
&& (pkt. topology[neighid] == nodeid)) Sendpacket(pkt , neighid); /*to child*/ else if (pkt.topology[nodeid] != nodeid) SendPacket(pkt, pkt.topology[nodeid] ) ; /*to parent*/ else return(FALSE) ; /*colnpleted root*/
) return(TRUE) ;
) A.7 Receive Packet Procedure
ReceivePacket ( pkt , f romid ) { if (pkt.event[nodeid] > event[nodeid] ) { /*resynch my*/ event[nodeid] = ptk.event[nodeid] ; /*event time*/ StartEventPacket( ) ; /*after restart*/
) for (i=0, olddata=FALSE, newdata=FALSE i<nodenum; i++) { if (pkt.from[i] ==i) rootid=i; ,/*find root node*/ if (pkt.even [ i ] > event[i]){ newdata = TRUE; /*update node*/ eventfi] = pkt.event[i] ; testrootid = -1; ) else if (pkt.event[i] <event[i]) { olddata = TRUE; /*update packet*/ pkt.event[i] = current[i];
)
) if (olddata) for (i=0; i<nodenum; i++) pkt.topology[i] = -1; if (pkt.from[nodeid]== -1) /*first visit*/ pkt.from[nodeid] = fromid; /*set parent*/ if (topologyfnodeid] !=-l) /*implies olddata*/ if (newdata | | (rootid> testrootid) ) { /*if new or*/ SetTests(pkt) ; /*equal with tie*/ testrootid = rootid; /*breaker valid*/ ) ) if ( !ForwardPacket(pkt, newdata)) /*implies root node*/ if (pkt.rootevent == event[nodeid'] ) /*current packet*/ if (topology[nodeid]== -1) /*packet updated*/ if (newdata | | (nodeid> testrootid)) { for (i=0, i<nodenum, i++) { pkt.eventfi] = eventfi]; pkt.topologyf i] = pkt.fromfi] pkt.fromfi] = -1; pkt.istestedf i] = -1; pkt.fromfnodeid] - nodeid; SetTests(pkt) ; testrootid = nodeid; ForwardPacket(pkt, FALSE); )
A.8 Send Packet Procedure
SendPacket(pkt, toid) /*send packet, test implied*/
Send message v/ith pkt to node toid; if (message not acknowledged) StartEventPacket() ;

Claims

WHAT IS CLAIMED:
1. An on-line adaptive distributed diagnostic system for an arbitrary network, comprising N nodes where N is an integer greater than or equal to 3, each of said nodes being in communication with at least one other node through a link in said network; each of said nodes being capable of executing an algorithm, said diagnostic system comprising:
(a) an algorithm which executes in a first phase and second phase and which creates a fixed testing assignment, said testing assignment testing each fault- free node and said second phase commencing upon diagnosis of a fault; and
(b) means in each node for testing at least another node using said algorithm to determine at least one state of said other node.
2. A system as described in Claim 1 wherein each node is in communication with every other fault-free node.
3. A system as set forth in Claim 1 wherein nodes are connected by links and the state of both said nodes and links are determined.
4. A system as described in Claim 1 wherein each node includes a processor.
5. A system as described in Claim 1 wherein said means for testing includes a memory; and a computer program stored in said memory for executing said algorithm for choosing at least one other processor to test by distributing and coordinating information contained in packets traversing fault-free nodes.
6. An adaptive distributed diagnostic system for a network consisting of N nodes, where N is an integer equal to or great than 3 and including communication paths between nodes, each of said nodes communicating with other nodes using message packets, and an algorithm executed by each of said nodes for testing adjacent nodes.
7. An adapting distributed system as set forth in Claim 7 wherein said algorithm includes a testing assignment for periodically testing said nodes and communication paths.
8. An adaptive distributed systems as set forth in Claim 8 wherein said testing assignment determined by each node when a node detects a state change of another node it is testing.
9. An adaptive distributed system as set forth in Claim 9 wherein each node is capable of testing an adjacent node on the communication path.
10. An adaptive distributed system as set forth in Claim 10 wherein said algorithm includes an active phase and a passive phase, said active phase commencing upon a diagnosis of a fault event of a node/link undergoing testing and terminating when a packet traverses said network without being updated; said passive phase commences upon the completion of said active phase. Said testing assignment constructed by said fault-free nodes.
PCT/US1993/011652 1992-12-03 1993-12-01 Method for on-line diagnosis for distributed network systems WO1994012889A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
EP94902483A EP0672258A4 (en) 1992-12-03 1993-12-01 Method for on-line diagnosis for distributed network systems.
AU56842/94A AU5684294A (en) 1992-12-03 1993-12-01 Method for on-line diagnosis for distributed network systems

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US98556992A 1992-12-03 1992-12-03
US07/985,569 1992-12-03

Publications (1)

Publication Number Publication Date
WO1994012889A1 true WO1994012889A1 (en) 1994-06-09

Family

ID=25531591

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1993/011652 WO1994012889A1 (en) 1992-12-03 1993-12-01 Method for on-line diagnosis for distributed network systems

Country Status (4)

Country Link
US (1) US5537653A (en)
EP (1) EP0672258A4 (en)
AU (1) AU5684294A (en)
WO (1) WO1994012889A1 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2002051181A1 (en) * 2000-12-20 2002-06-27 Telefonaktiebolaget Lm Ericsson (Publ) Method and means for testing the performance of a network node in a radio communication system
CN107168842A (en) * 2017-06-02 2017-09-15 西安电子科技大学 Adaptive sequential fault diagnosis method based on pmc model

Families Citing this family (37)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO1995026001A1 (en) * 1994-03-22 1995-09-28 Norman Richard S Efficient direct cell replacement fault tolerant architecture supporting completely integrated systems with means for direct communication with system operator
US5671351A (en) * 1995-04-13 1997-09-23 Texas Instruments Incorporated System and method for automated testing and monitoring of software applications
US5983369A (en) * 1996-06-17 1999-11-09 Sony Corporation Online simultaneous/altering-audio/video/voice data based service and support for computer systems
US6212649B1 (en) 1996-12-30 2001-04-03 Sentar, Inc. System and method for providing highly-reliable coordination of intelligent agents in a distributed computing system
US6069873A (en) * 1997-10-01 2000-05-30 U S West, Inc. Closed-loop automated testing of system equipment and management
US6484155B1 (en) 1998-07-21 2002-11-19 Sentar, Inc. Knowledge management system for performing dynamic distributed problem solving
US6308231B1 (en) 1998-09-29 2001-10-23 Rockwell Automation Technologies, Inc. Industrial control systems having input/output circuits with programmable input/output characteristics
US6298393B1 (en) * 1998-09-30 2001-10-02 Rockwell Technologies, Llc Industrial control systems having input/output circuits with programmable input/output characteristics
US6225825B1 (en) 1998-09-30 2001-05-01 Rockwell Technologies, Llc Industrial control systems having input/output circuits with programmable input/output characteristics
US6281894B1 (en) 1999-08-31 2001-08-28 Everdream, Inc. Method and apparatus for configuring a hard disk and for providing support for a computer system
US6560720B1 (en) * 1999-09-09 2003-05-06 International Business Machines Corporation Error injection apparatus and method
US6601184B1 (en) 2000-03-14 2003-07-29 Novell, Inc. System crash network access
US6751794B1 (en) 2000-05-25 2004-06-15 Everdream Corporation Intelligent patch checker
US6490253B1 (en) 2000-11-22 2002-12-03 Seagate Technology Llc Peer to peer interconnect diagnostics
US6766482B1 (en) 2001-10-31 2004-07-20 Extreme Networks Ethernet automatic protection switching
US7099942B1 (en) 2001-12-12 2006-08-29 Bellsouth Intellectual Property Corp. System and method for determining service requirements of network elements
US6973595B2 (en) * 2002-04-05 2005-12-06 International Business Machines Corporation Distributed fault detection for data storage networks
US6639433B1 (en) 2002-04-18 2003-10-28 Johnson Controls Technology Company Self-configuring output circuit and method
US7055172B2 (en) 2002-08-08 2006-05-30 International Business Machines Corporation Problem determination method suitable for use when a filter blocks SNMP access to network components
US7047463B1 (en) * 2003-08-15 2006-05-16 Inovys Corporation Method and system for automatically determining a testing order when executing a test flow
US7370101B1 (en) 2003-12-19 2008-05-06 Sun Microsystems, Inc. Automated testing of cluster data services
US7165189B1 (en) * 2003-12-19 2007-01-16 Sun Microsystems, Inc. Distributed test framework for clustered systems
US7165192B1 (en) * 2003-12-19 2007-01-16 Sun Microsystems, Inc. Fault isolation in large networks
US20050253744A1 (en) * 2004-05-13 2005-11-17 Johnson Controls Technology Company Configurable output circuit and method
US7437595B2 (en) * 2005-02-07 2008-10-14 International Business Machines Corporation Row fault detection system
US7826379B2 (en) * 2005-02-07 2010-11-02 International Business Machines Corporation All-to-all sequenced fault detection system
US7529963B2 (en) * 2005-02-07 2009-05-05 International Business Machines Corporation Cell boundary fault detection system
US7506197B2 (en) * 2005-02-07 2009-03-17 International Business Machines Corporation Multi-directional fault detection system
US8495411B2 (en) * 2005-02-07 2013-07-23 International Business Machines Corporation All row, planar fault detection system
US7451342B2 (en) * 2005-02-07 2008-11-11 International Business Machines Corporation Bisectional fault detection system
US7529976B2 (en) * 2006-05-20 2009-05-05 International Business Machines Corporation Multiple subsystem error reporting
US20070286087A1 (en) * 2006-06-13 2007-12-13 International Business Machines Corporation Distributed Network Enhanced Wellness Checking
US8107399B2 (en) * 2007-06-08 2012-01-31 Alcatel-Lucent Usa Inc. Methods and devices for providing robust nomadic wireless mesh networks using directional antennas
US7840841B2 (en) * 2007-09-27 2010-11-23 Cisco Technology, Inc. Automatic detection of functional defects and performance bottlenecks in network devices
US8060783B2 (en) * 2009-02-20 2011-11-15 International Business Machines Corporation Distributed runtime diagnostics in hierarchical parallel environments
US20100222897A1 (en) * 2009-03-02 2010-09-02 Toyota Motor Engineering & Manufacturing North America, Inc. Distributed fault diagnosis
US8635041B2 (en) * 2009-06-11 2014-01-21 WesternGeo L.L.C. Synchronizing a seismic data acquisition network

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4451916A (en) * 1980-05-12 1984-05-29 Harris Corporation Repeatered, multi-channel fiber optic communication network having fault isolation system
US4709365A (en) * 1983-10-31 1987-11-24 Beale International Technology Limited Data transmission system and method
US4872165A (en) * 1983-09-08 1989-10-03 Hitachi, Ltd. Fault diagnostic distributed processing method and system
US5016243A (en) * 1989-11-06 1991-05-14 At&T Bell Laboratories Automatic fault recovery in a packet network
US5173689A (en) * 1990-06-25 1992-12-22 Nec Corporation Self-distributed logical channel node failure restoring system
US5218601A (en) * 1989-12-22 1993-06-08 Fujitsu Limited Method for searching for alternate path in communication network

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4747100A (en) * 1986-08-11 1988-05-24 Allen-Bradley Company, Inc. Token passing network utilizing active node table
US4912656A (en) * 1988-09-26 1990-03-27 Harris Corporation Adaptive link assignment for a dynamic communication network
US5159685A (en) * 1989-12-06 1992-10-27 Racal Data Communications Inc. Expert system for communications network
US5265241A (en) * 1990-09-04 1993-11-23 International Business Machines Corporation Method and apparatus for verifying the configuration of a link-connected network
US5295244A (en) * 1990-09-17 1994-03-15 Cabletron Systems, Inc. Network management system using interconnected hierarchies to represent different network dimensions in multiple display views
US5325518A (en) * 1991-04-02 1994-06-28 Carnegie Mellon University Adaptive distributed system and method for fault tolerance

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4451916A (en) * 1980-05-12 1984-05-29 Harris Corporation Repeatered, multi-channel fiber optic communication network having fault isolation system
US4872165A (en) * 1983-09-08 1989-10-03 Hitachi, Ltd. Fault diagnostic distributed processing method and system
US4991174A (en) * 1983-09-08 1991-02-05 Hitachi, Ltd. Fault diagnostic distributed processing method and system
US4709365A (en) * 1983-10-31 1987-11-24 Beale International Technology Limited Data transmission system and method
US5016243A (en) * 1989-11-06 1991-05-14 At&T Bell Laboratories Automatic fault recovery in a packet network
US5218601A (en) * 1989-12-22 1993-06-08 Fujitsu Limited Method for searching for alternate path in communication network
US5173689A (en) * 1990-06-25 1992-12-22 Nec Corporation Self-distributed logical channel node failure restoring system

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See also references of EP0672258A4 *

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2002051181A1 (en) * 2000-12-20 2002-06-27 Telefonaktiebolaget Lm Ericsson (Publ) Method and means for testing the performance of a network node in a radio communication system
CN107168842A (en) * 2017-06-02 2017-09-15 西安电子科技大学 Adaptive sequential fault diagnosis method based on pmc model
CN107168842B (en) * 2017-06-02 2020-09-25 西安电子科技大学 Self-adaptive sequential fault diagnosis method based on PMC model

Also Published As

Publication number Publication date
EP0672258A4 (en) 1997-04-16
US5537653A (en) 1996-07-16
EP0672258A1 (en) 1995-09-20
AU5684294A (en) 1994-06-22

Similar Documents

Publication Publication Date Title
US5537653A (en) Method for on-line diagnosis for distributed network systems
US5684807A (en) Adaptive distributed system and method for fault tolerance
US5325518A (en) Adaptive distributed system and method for fault tolerance
Bianchini et al. An adaptive distributed system-level diagnosis algorithm and its implementation
Debouk et al. Coordinated decentralized protocols for failure diagnosis of discrete event systems
US7725774B2 (en) Methods, systems, and media to correlate errors associated with a cluster
US6532554B1 (en) Network event correlation system using formally specified models of protocol behavior
Bianchini et al. Practical application and implementation of distributed system-level diagnosis theory
US6728214B1 (en) Testing of network routers under given routing protocols
Benveniste et al. Diagnosis of asynchronous discrete-event systems: a net unfolding approach
US6614764B1 (en) Bridged network topology acquisition
US6721275B1 (en) Bridged network stations location revision
US4912656A (en) Adaptive link assignment for a dynamic communication network
Debouk et al. On the effect of communication delays in failure diagnosis of decentralized discrete event systems
Duarte et al. Distributed diagnosis of dynamic events in partitionable arbitrary topology networks
Bianchini et al. The Adapt2 on-line diagnosis algorithm for general topology networks
Zhang et al. Service failure diagnosis in service function chain
Duarte et al. Non-broadcast network fault-monitoring based on system-level diagnosis
Genç et al. A distributed algorithm for on-line diagnosis of place-bordered petri nets
JPH07273785A (en) Node-to-node information collecting system in ring system
Kelkar et al. Coordinator-based adaptive fault diagnosis algorithm for distributed computing systems
Olson et al. Message routing in HARTS with faulty components
Patil et al. Probe station placement algorithm for probe set reduction in network fault detection and localization
Hadjicostis et al. Decentralized State Estimation
Gambhir et al. Fault isolation in communication networks with local directed graphs

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AU CA CZ JP KR PL RU SK

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FR GB GR IE IT LU MC NL PT SE

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 1994902483

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1994902483

Country of ref document: EP

NENP Non-entry into the national phase

Ref country code: CA

WWW Wipo information: withdrawn in national office

Ref document number: 1994902483

Country of ref document: EP