Tagged Questions

4
votes
4answers
149 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. …
5
votes
5answers
243 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
189 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. …
2
votes
1answer
181 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 ne …
5
votes
2answers
238 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 rad …
2
votes
5answers
374 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 } fin …
9
votes
1answer
257 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 diffe …
4
votes
3answers
662 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 ov …
4
votes
2answers
241 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 "simila …