Fault tolerance refers to a system's capability to isolate, compensate for and recover from failure with minimal impact to the end user. Please include a tag indicating the system and/or technology you are working with.

learn more… | top users | synonyms

0
votes
1answer
13 views

LDAP Fault-tolerance configuration (e.g SunOne)

LDAP Fault-tolerance configuration (e.g SunOne): Does anyboby know how to configuration "Fault-tolerance" for LDAP, e.g SunOne LDAP. I search via google without any userful result? Thanks
1
vote
3answers
48 views

Does the child actor know that he is being resumed?

Imagine a straight-forward supervision hierarchy. The child dies. The father decides to Restart the child. When Restarted, the postRestart and friends are called, but what if the father had decided to ...
0
votes
1answer
24 views

if a node in the host file goes down how to work with the remaining nodes of the cluster in MPI program

if a node in the host file goes down how to work with the remaining nodes using MPI
0
votes
1answer
101 views

Implementing fault tolerance in distributed message queues

Suppose in the picture below that the middle message queue fails. Senders can still get messages sent by using other message queues. But what happens if the message queue dies after receiving the ...
3
votes
2answers
468 views

Persisting Akka state in case of a crash

I am a beginner with Akka, and I enjoy many of the functionalities it provides for asynchronous programming, such as Actors, Agents or Futures. A strong selling point of Akka is the fact that when an ...
1
vote
2answers
163 views

Fault Tolerance based Approaches to avoid java.lang.OutOfMemoryError

Many a carefully crafted piece of Java code has been laid to waste by java.lang.OutOfMemoryError. There seems to be no relief from it, even production class code gets downed by it. The question I ...
0
votes
0answers
25 views

Fault-tolerance in video hosting systems. Especially the file uploading and saving operation

What are the problems that could emerge, when any media file has to be saved in a directory. This all about video hosting. What are the fault-tolerance concepts, best practices that are common to ...
0
votes
1answer
133 views

Benefit of Erlang for collaborative real time application

I am looking into creating a real-time document editing and chat application. I have been wanting to learn Erlang for a while, and I was wondering whether this might be a good project to try it out ...
3
votes
1answer
370 views

Building a fault-tolerant soft real-time web application with Erlang/OTP

I would like to build a fault-tolerant soft real-time web application for a pizza delivery shop. It should help the pizza shop to accept phone calls from customers, put them as orders into the system ...
0
votes
2answers
76 views

Fault tolerant system design

There is a DB as data store and y (>5) other machines. There is a machine A that has data (updated) every x mins. The y machines gets the data from Machine A every x mins, updates the data in the ...
1
vote
1answer
175 views

Simulating node failure in a DHT

I'm currently doing some performance testing with the free pastry DHT. Freepastry is an open source DHT done in Java. The goal is to monitor the effect on the DHT when a certain number of nodes go ...
0
votes
1answer
111 views

Java implementation of fault tolerance for a P2P application

I have a P2P application coded by LiteSoft.org. I am looking to implement a leader election system within this application. Before I can even start that, I have to have a fault tolerance system that ...
4
votes
1answer
260 views

How is running out of memory handled in Erlang?

With the "let it crash" philosophy of Erlang, one would expect the entire VM not to crash if a process cannot allocate the memory needed to proceed with its operations; indeed, if the system had a ...
1
vote
0answers
90 views

In Akka 2.0, can I restart an actor on a new remote node from a supervisor?

Assuming a supervisor that is supervising a remote actor. If the remote actor dies because its entire Akka node has been terminated, is it possible to resurrect the actor on a new Akka node, keeping ...
1
vote
0answers
99 views

In Akka 2.0, is it possible to have a clustered supervisor?

I know that proper clustering using Akka is the focus of Akka 2.1, however need to build something with what's available now. I have a multi node Akka setup and want to gracefully handle remote ...
0
votes
2answers
525 views

More graceful error handling in C++ library - jsoncpp

I'm not sure if this will be a specific thing with jsoncpp or a general paradigm with how to make a C++ library behave better. Basically I'm getting this trace: imagegeneratormanager.tsk: ...
2
votes
1answer
203 views

Fault tolerant Solr replication architecture

I am using solr with replication. I have one master that indexes data and two slaves which pulls index from master and responds to the queries. My question is, how can i create fault tolerant ...
0
votes
1answer
82 views

Creating fault tolerant system - Use data file to reload save data?

EDIT - The implementation Language is Java. I want to make a simple fault tolerant system. Object A - This object contains the decision logic for the system. Object B - This object will be used ...
0
votes
3answers
446 views

Advantages of using an Erlang web server for a web application

Note: This question is heavily affected by the main requirement to the web application that I build: high availability and fault tolerance. All the other requirements (like scalability and number of ...
4
votes
2answers
118 views

How to design : Avoid resource leaking when randomly accessing files

I have client/server application where the client app will open files. Those files get split in chunks, and sent to the server. Not only does the client send file chunks, but it sends other data as ...
0
votes
1answer
135 views

How to implement a fault-tolerant web client?

I would like to develop a "Fault Tolerant" web app, please let me explain: Suppose a application for a restaurant, to be offered as a service (no installation, servers, backup, etc...). The problem ...
4
votes
3answers
175 views

Disable tolerance (or enable strictness) in Firefox when rendering HTML

Firefox has a certain tolerance when rendering bad HTML. This means even if a closing tag is left out, the HTML will be displayed as if everything was fine. This tolerance aspect is particularly ...
2
votes
3answers
138 views

Fault-tolerant file_get_contents

I have a website with the following architecture: End user ---> Server A (PHP) ---> Server B (ASP.NET & Database) web file_get_contents ...
0
votes
1answer
361 views

How to achieve fault tolerance in cloud?

I am working on a project which aims at achieving fault tolerant cloud through elastic IP addressing and load balancing. Initially, I opted for Windows Azure but it provides automatic fault handling ...
0
votes
1answer
465 views

how HDFS replication factor is decide on?

The replication factor in HDFS must be at least 3. Despite the fact that, the main purpose of choosing it to be 3 is fault-tolerance and the possibility of a rack failure is far less than the ...
1
vote
1answer
126 views

Implementing Replication and Fault Tolerance in CORBA

I want to implement the replication and fault tolerance in CORBA using Java. I programmed CORBA servers and clients in Java using Java IDL technology . by looking at the Official docs of Java IDL , ...
1
vote
3answers
156 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, ...
15
votes
1answer
209 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 a bus-oriented architecture. I need to test the fault-tolerance of the system, and for that I was wondering if there is ...
5
votes
1answer
525 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 = ...
1
vote
1answer
40 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], ...
3
votes
2answers
295 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 ...
0
votes
1answer
110 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 ...
1
vote
1answer
146 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
82 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 ...
1
vote
3answers
121 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 ...
53
votes
3answers
2k 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 ...
1
vote
2answers
564 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 ...
4
votes
8answers
645 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
154 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. ...
7
votes
2answers
802 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 ...
1
vote
1answer
278 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 ...
2
votes
4answers
216 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 ...
19
votes
5answers
5k 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 ...
0
votes
2answers
89 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 ...
21
votes
3answers
2k 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 ...
7
votes
2answers
627 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 ...
5
votes
2answers
333 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
461 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 ...
0
votes
3answers
733 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 ...
2
votes
2answers
429 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 ...

1 2