active questions tagged fault-tolerance - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:39:06Zhttp://stackoverflow.com/feeds/tag/fault-tolerancehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/610242/fault-tolerant-software-architecture5Fault tolerant software architecturemacleojw2009-03-04T11:55:36Z2009-10-18T17:06:21Z
<p>I'm looking for some good articles on fault tolerant software architectures. Could I please have some recommendations.</p>
http://stackoverflow.com/questions/1184704/what-are-the-cases-that-cause-wcf-proxy-to-be-faulted0What are the cases that cause WCF proxy to be faulted?Ahmed Said2009-07-26T14:22:11Z2009-07-26T18:27:05Z
<p>I want to know what are the cases in which WCF proxy (generated by vs2008 or svcutil) becomes faulted (fault state)? so I can recreate new instance and avoid use the faulted one.</p>
<p>currently I am handling TimeoutException,FaultException,CommunicationObjectAbortedException</p>
<pre><code> try
{
client.Method1(args);
}
catch (TimeoutException)
{
client.Abort();
ReCreate();
}
catch (FaultException)
{
client.Abort();
ReCreate();
}
catch (CommunicationObjectAbortedException)
{
client.Abort();
ReCreate();
}
</code></pre>
<p>I think I can avoid all these types and handle only the parent CommunicationException, is this sufficient? I need comments</p>
http://stackoverflow.com/questions/1149227/how-do-supervisor-processes-monitor-processes-can-the-same-be-done-on-the-jvm4How do supervisor processes monitor processes? Can the same be done on the JVM?Alan Kent2009-07-19T04:12:10Z2009-07-21T06:12:04Z
<p>Erlang fault tolerance (as I understand it) includes the use of supervisor processes to keep an eye on worker processes, so if a worker dies the supervisor can start up a new one.</p>
<p>How does Erlang do this monitoring, especially in a distributed scenario? How can it be sure the process has really died? Does it do heart beats? Is something built into the runtime environment? What if a network cable is unplugged - does it assume the other processes have died if it cannot communicate with them? etc.</p>
<p>I was thinking about how to achieve the same fault tolerance etc claimed by Erlang in the JVM (in say Java or Scala). But I was not sure if it required support built into the JVM to do it as well as Erlang. I had not come across a definition of how Erlang does it yet though as a point of comparison.</p>
http://stackoverflow.com/questions/929985/whats-up-with-the-optionalfield-attribute2What's up with the [OptionalField] Attribute?Dabblernl2009-05-30T15:48:51Z2009-05-30T17:14:39Z
<p>As I understand it I have to adorn a new member in a newer version of my class with the [OptionalField] Attribute when I deserialize an older version of my class that lacks this newer member.</p>
<p>However, the code below throws no exception while the InnerTranslator property was added after serializing the class. I check for the property to be null in the onDeserialization method (which confirms that it was not serialized),but I would have expected the code to throw an exception because of that.
Is the [OptionalField] Attribute itself optional?</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization;
namespace SerializationSpike
{
class Program
{
static void Main(string[] args)
{
var listcol = new SortedList<string,string>
{
{"Estados Unidos", "United States"},
{"Canadá", "Canada"},
{"España", "Spain"}
};
var translator = new CountryTranslator(listcol);
using (var file_stream=new FileStream("translator.bin",FileMode.Open))
{
var formatter = new BinaryFormatter();
translator = formatter.Deserialize(file_stream) as CountryTranslator;
file_stream.Close();
}
Console.ReadLine();
}
}
[Serializable]
internal class CountryTranslator:IDeserializationCallback
{
public int Count { get; set; }
public CountryTranslator(SortedList<string,string> sorted_list)
{
this.country_list = sorted_list;
inner_translator = new List<string> {"one", "two"};
}
//[OptionalField]
private List<string> inner_translator;
public List<string> InnerTranslator
{
get { return inner_translator; }
set { inner_translator = value; }
}
private SortedList<string, string> country_list;
#region Implementation of IDeserializationCallback
public void OnDeserialization(object sender)
{
Debug.Assert(inner_translator == null);
Count=country_list.Count;
}
#endregion
}
}
</code></pre>
http://stackoverflow.com/questions/566158/fault-radiation-tolerant-soft-core5Fault (radiation) tolerant soft core?Marco Scappatura2009-02-19T16:43:13Z2009-02-23T19:33:10Z
<p>Hi everybody, I've a question...</p>
<p>is there a certification or something that decides if a soft core is fault tolerant or not?</p>
<p>and another question...I've seen that LEON3-FT is radiation tolerant only implementd on RTAX Actel FPGA. Is it right?</p>
<p>Excuse me but I'm confusing about it becuase somebody speaks about LEON3-FT (fault tolerant) for space application where is better to say radiation toleran...mny doubts!!!!!</p>
<p>And, the last question...is there somebody that knows another soft core "radiation tolerant" (for space application)?</p>
<p>Many thanks in advance!!!!</p>
<p>Marco</p>
http://stackoverflow.com/questions/140253/how-can-i-simulate-ext3-filesystem-corruption9How can I simulate ext3 filesystem corruption?David Holm2008-09-26T15:32:48Z2009-01-26T14:08:06Z
<p>I would like to simulate filesystem corruption for the purpose of testing how our embedded systems react to it and ultimately have them fail as gracefully as possible. We use different kinds of block device emulated flash storage for data which is modified often and unsuitable for storage in NAND/NOR.</p>
<p>Since I have a pretty good idea of how often data is modified in different parts of the file tree and where sensitive data is stored I would like to inject errors in specific areas and not just randomly. </p>
<p>In cases of emergency we use <em>fsck -y</em> as a sort of last resort in order to attempt to bring the system up and report that is in a very bad state. I would very much like to cause errors which would trigger fsck to attempt repairs in order to study the effect on the systems capability to come back up.</p>
<p><em>dd if=/dev/random</em> is not precise enough for my purpose since it can't easily be used to inject controlled errors. Are there any other tools or methods which fit my needs better or do I have to invent my own?</p>
http://stackoverflow.com/questions/204437/how-do-i-automatically-re-establish-a-duplex-channel-if-it-gets-faulted4How do I automatically re-establish a duplex channel if it gets faulted?Jacob2008-10-15T11:51:51Z2009-01-09T22:00:32Z
<p>Hi,</p>
<p>I'm developing a client/server application in .Net 3.5 using WCF. Basically, a long running client service (on several machines) establish a duplex connection to the server over a netTcpBinding. The server then uses the callback contract of the client to perform certain on-demand oparations, to which the client responds in an asynchronous fashion (fairly standard stuff I think). I subclass the DuplexClientBase class to handle most of the communication.</p>
<p>Unfortunately, when something goes wrong on either end (such as a network failure, unexpected exception, etc), the channel gets faulted/aborted and all subsequent operations fail. I've gotten around this limitation in non-duplex channels by creating a RecoveringClientBase class that automatically picks up when the client has faulted and retries the operation.</p>
<p>So my question is, is there an established way of determining when a duplex channel has faulted? Where should I check this, on the server or the client? Failing that, what options do I have to ensure that the connection gets re-established?</p>
<p><strong>Update:</strong> I'm looking for some advice specific to duplex channels, where the server might try to use a callback channel that was faulted. Thus, I need something that will immediately reconnect/resubscribe when something happens to the channel. At the moment I'm listening to the channel's Closing event and recreating it if the state is anything but Closed. It sort of works, but it feels hacky...</p>
http://stackoverflow.com/questions/37296/how-to-robustly-but-minimally-distribute-items-across-a-peer-to-peer-system4How to robustly, but minimally, distribute items across a peer-to-peer systemJohn the Statistician2008-09-01T00:17:45Z2008-09-26T14:56:20Z
<p>If one has a peer-to-peer system that can be queried, one would like to </p>
<ul>
<li>reduce the total number of queries across the network (by distributing "popular" items widely and "similar" items together) </li>
<li>avoid excess storage at each node</li>
<li>assure good availability to even moderately rare items in the face of client downtime, hardware failure, and users leaving (possibly detecting rare items for archivists/historians)</li>
<li>avoid queries failing to find matches in the event of network partitions</li>
</ul>
<p>Given these requirements:</p>
<ol>
<li>Are there any standard approaches? If not, is there any respected, but experimental, research? I'm familiar some with distribution schemes, but I haven't seen anything really address learning for robustness.</li>
<li>Am I missing any obvious criteria?</li>
<li>Is anybody interested in working on/solving this problem? (If so, I'm happy to open-source part of a very lame simulator I threw together this weekend, and generally offer unhelpful advice).</li>
</ol>
<p>@cdv: I've now watched the video and it is very good, and although I don't feel it quite gets to a pluggable distribution strategy, it's definitely 90% of the way there. The questions, however, highlight useful differences with this approach that address some of my further concerns, and gives me some references to follow up on. Thus, I'm provisionally accepting your answer, although I consider the question open.</p>
http://stackoverflow.com/questions/66643/fail-fast-finally-clause-in-java2Fail fast finally clause in JavaGreg Rogers2008-09-15T20:31:53Z2008-09-15T20:42:55Z
<p>Is there a way to detect, from within the finally clause, that an exception is in the process of being thrown?</p>
<p>ie:</p>
<pre><code>
try {
// code that may or may not throw an exception
} finally {
SomeCleanupFunctionThatThrows();
// if currently executing an exception, exit the program,
// otherwise just let the exception thrown by the function
// above propagate
}
</code></pre>
<p>or is ignoring one of the exceptions the only thing you can do. In C++ it doesn't even let you ignore one of the exceptions and just calls terminate(). Most other languages use the same rules as java.</p>