Tagged Questions
The fault-tolerance tag has no wiki summary.
51
votes
3answers
1k views
Akka Actor not terminating if an exception is thrown
I am currently trying to get started with Akka and I am facing a weird problem. I've got the following code for my Actor:
class AkkaWorkerFT extends Actor {
def receive = {
case Work(n, c) if n ...
13
votes
3answers
748 views
Are Erlang/OTP messages reliable? Can messages be duplicated?
Long version:
I'm new to erlang, and considering using it for a scalable architecture. I've found many proponents of the platform touting its reliability and fault tolerance.
However, I'm ...
11
votes
2answers
376 views
Resources about crash-safe and fault-tolerance programming
I like the LWN article "Crash-only software" and I would like to learn more about crash-safe and fault-tolerant programming.
It is surprisingly hard to assure that the persistent state is consistent ...
10
votes
4answers
2k views
Scala + Akka: How to develop a Multi-Machine Highly Available Cluster
We're developing a server system in Scala + Akka for a game that will serve clients in Android, iPhone, and Second Life. There are parts of this server that need to be highly available, running on ...
10
votes
1answer
757 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 ...
7
votes
0answers
85 views
Testing with probabilistic failure of components in Akka (Scala)
I've started using Akka with Scala to develop a set of interacting components in BUS-oriented architecture. I need to test the fault-tolerance of the system, and for that I was wondering if there is ...
7
votes
2answers
364 views
How to discover that a Scala remote actor is died?
In Scala, an actor can be notified when another (remote) actor terminates by setting the trapExit flag and invoking the link() method with the second actor as parameter. In this case when the remote ...
7
votes
2answers
291 views
Best Practices of fault toleration and reliability for scheduled tasks or services
I have been working on many applications which run as windows service or scheduled tasks.
Now, i want to make sure that these applications will be fault tolerant and reliable. For example; i have a ...
7
votes
4answers
2k views
How do I automatically re-establish a duplex channel if it gets faulted?
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 ...
6
votes
4answers
471 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 ...
6
votes
6answers
968 views
Fault tolerant software architecture
I'm looking for some good articles on fault tolerant software architectures. Could I please have some recommendations.
5
votes
1answer
81 views
Articles about replication schemes/algorithms?
I'm designing a distributed system with a certain flow of data in it. I'd like to guarantee that at least N nodes have almost-current data at any given time.
I do not need complete consistency, only ...
5
votes
2answers
330 views
Fault (radiation) tolerant soft core?
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 implementd on ...
4
votes
8answers
372 views
Is it not possible to make a C++ application “Crash Proof”?
Let's say we have an SDK in C++ that accepts some binary data (like a picture) and does something. Is it not possible to make this SDK "crash-proof"? By crash I primarily mean forceful termination by ...
4
votes
3answers
108 views
Isolating untrusted native code in Java
I have a piece of C library that I don't trust (in the sense that it might crash frequently). I am calling this from a Java process.
To prevent the crash in C library bringing the whole Java app. ...
4
votes
2answers
199 views
Error monitoring/handling on webservers
We have a web server that we're about to launch a number of applications onto. They will all share database and memcached servers, but each application has it's own mySQL database and all memcached ...
4
votes
4answers
266 views
Testing fault tolerant code
I’m currently working on a server application were we have agreed to try and maintain a certain level of service. The level of service we want to guaranty is: if a request is accepted by the server ...
4
votes
1answer
991 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.
...
4
votes
2answers
349 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)
...
3
votes
0answers
127 views
Handle Akka actor bounded mailbox MessageQueueAppendFailedException
To avoid OOM, I'm bounding the mailbox size of some of my Akka 1.1.3 actors with a shared custom dispatcher. For example:
object Static {
val dispatcher = ...
3
votes
2answers
136 views
Software Fault Tolerance
Does anyone know how software fault tolerance is implemented in Air Traffic Control Systems?
Some URLs would be very helpful.
3
votes
1answer
79 views
Fault Tolerant Computing Learning Resources
I am planning to take a course on “Fault Tolerant Computing”
Does anybody know some good learning resource about this subject?
Public domain books/tutorials would be very handy.
Thanks
3
votes
5answers
722 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 {
...
2
votes
2answers
129 views
What it the real benefit from Erlang's fault tolerance for a web project?
Let's assume we have a web project in which we want to have ~10000 web clients connected to the server simultaneously. Let's also assume that one client session lasts about 25 minutes.
If we compare ...
2
votes
4answers
123 views
design patterns for transactional services with checkpoints and recovery
I have a multistep process where each step does some network IO (web service call) and then persists some data. I want to design it in a fault tolerant way so that if the service fails, either because ...
2
votes
2answers
208 views
Good scalable fault-tolerant in-memory database with LINQ support for .NET
Are there are good in-memory transactional databases that support LINQ and SQL Server persistance? I'd like to create a full representation of a large data store in memory and have it commit to a SQL ...
2
votes
4answers
919 views
Robust fault tolerant MySQL replication
Is there any way to get a fault tolerant MySQL replication? I am in an environment that has many networking issues. It appears that replication gets an error and just stops. I need it to continue to ...
2
votes
2answers
1k views
How does the HP (Tandem) Non stop compare with Linux clusters?
HP NonStop systems (previously known as "Tandem") are known for their high availability and reliability, and higher price.
How do Linux or Unix based clusters compare with them, in ...
1
vote
1answer
35 views
Code that detects its own bugs?
Consider the following code snippet:
int index = FindClosestIndex(frame);
if (_data[index].Frame == frame)
return _data[index];
else
return interpolateData(frame, _data[index - 1], ...
1
vote
3answers
79 views
Please help me design this event reporting system
I'm trying to design a system which reports activity events to a database via a web service. The web service and database have already been built (COTS software) - all I have to do is provide the ...
1
vote
1answer
181 views
NServiceBus appropriate for load distribution of periodic tasks
Would NServiceBus or an equivalent ESB be appropriate for an application that has a bunch of different kinds of background maintenance-type tasks? For example:
Scanning databases for the occurence ...
1
vote
1answer
562 views
Do I absolutely need a minimum of 3 nodes/servers for a Cassandra cluster or will 2 suffice?
Surely one can run a single node cluster but I'd like some level of fault-tolerance.
At present I can afford to lease two servers (8GB RAM, private VLAN @1GigE) but not 3.
My understanding is that 3 ...
1
vote
1answer
478 views
catastrophic disasters due to software system failures
I know this is not a programming problem, but this problem is related to computer systems I am posting this question.
Can somebody tell me a good place to find out information related to catastrophic ...
1
vote
2answers
1k 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 ...
0
votes
2answers
26 views
Java web applications supervision and faulttolerance
Note: The author of this question has some Java background, but is a complete newbie in Java EE.
I would like to know if there exists a mature tool to supervise Java web applications.
For example, ...
0
votes
1answer
57 views
Flex AMF offline mode?
I am currently using Flex (Flash Builder 4) and making web service connections to a Apache PHP Zend AMF server to retrieve data.
This works great, but I am wondering what options are available for ...
0
votes
0answers
25 views
how to set the communicator mode in “FT-MPI”
I want the control to return to the program if there is a process failure. As far as I know, this feature is not supported by any other implementation except for FT-MPI. Hence I want to use it (FT-MPI ...
0
votes
0answers
77 views
Failover solution for Email Service Providers (ESPs)?
We are looking for a library, project, or service that lets us transparently use multiple Email Service Providers ("ESPs", e.g. ConstantContact, JangoMail, Sailthru, SendGrid, VerticalResponse, etc). ...
0
votes
4answers
67 views
What assumptions can I make about global time on Azure?
I want my Azure role to reprocess data in case of sudden failures. I consider the following option.
For every block of data to process I have a database table row and I could add a column meaning ...
0
votes
2answers
96 views
Fault Tolerance in MapReduce
I was reading about Hadoop and how fault tolerant it is. I read the HDFS and read how failure of master and slave nodes can be handled. However, i couldnt find any document that mentions how the ...
0
votes
2answers
62 views
Exception handling in a real time, SQL-Server driven system
I have developed a report viewer in .NET Winforms (it just runs queries and displays results).
This works against a reporting database. However, the above is a small subset of a much larger ...
0
votes
3answers
433 views
What alternatives do I have if I want a distributed multi-master database?
I will build a system where I want to reduce single-point-of-failures, and I need a database. Is there any (free) relational database systems that can handle multi-master setups good (i.e where it is ...
0
votes
1answer
69 views
What Linux tools are available to monitor/configure deployed code?
I'm writing some telecommunications software, and must devise a way to monitor and configure the software after it has been deployed on a server.
The company I work for currently has an in-house ...
0
votes
3answers
237 views
How does Google App Engine infrastructure is fault tolerant?
I am actually implementing a web application on Google App Engine. This has taken me for the moment a huge time in re-designing the database and the application through GAE requirements and best ...