Tagged Questions

5
votes
5answers
257 views

Fault tolerant software architecture

I'm looking for some good articles on fault tolerant software architectures. Could I please have some recommendations.
0
votes
2answers
238 views

What are the cases that cause WCF proxy to be faulted?

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. currently I am …
4
votes
4answers
167 views

How do supervisor processes monitor processes? Can the same be done on the JVM?

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. How does Erlang do …
2
votes
1answer
207 views

What’s up with the [OptionalField] Attribute?

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. …
5
votes
2answers
244 views

Fault (radiation) tolerant soft core?

Hi everybody, I've a question... is there a certification or something that decides if a soft core is fault tolerant or not? and another question...I've seen that LEON3-FT is radiation tolerant only …
9
votes
1answer
271 views

How can I simulate ext3 filesystem corruption?

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 …
4
votes
3answers
700 views

How do I automatically re-establish a duplex channel if it gets faulted?

Hi, 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. …
4
votes
2answers
251 views

How to robustly, but minimally, distribute items across a peer-to-peer system

If one has a peer-to-peer system that can be queried, one would like to reduce the total number of queries across the network (by distributing "popular" items widely and "similar" items together) …
2
votes
5answers
411 views

Fail fast finally clause in Java

Is there a way to detect, from within the finally clause, that an exception is in the process of being thrown? ie: try { // code that may or may not throw an exception } finally { …