Tagged Questions
The reliability tag has no wiki summary.
40
votes
7answers
9k views
Django vs Flask for a long-term project
I am looking for a comparison of django and flask for a project that will live for a long time, and will need to be maintained, built upon and grow as the months progress.
I am considering Flask + ...
13
votes
3answers
305 views
Erlang's 99.9999999% (nine nines) reliability
Erlang was reported to have been used in production systems for over 20 years with an uptime percentage of 99.9999999%.
I did the math as the following:
20*365.25*24*60*60*(1 - 0.999999999) == 0.631 ...
13
votes
3answers
751 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
8answers
266 views
Fail Fast vs. Robustness
Our product is a distributed system. The modules I work on are fairly new, quite rigorous, well tested. They were developed with recent best practices in mind. Other modules can be considered as ...
10
votes
1answer
836 views
Has anyone tried Flax?
I'm not talking about the stuff that health junkies eat, but the open-source search/indexing software based on Xapian.
My company are currently employing someone to implement it, and they want me to ...
10
votes
7answers
641 views
Coding for high reliability/availability/security - what standards do I read?
I've heard that the automotive industry has something called MISRA C.
What are the relevant standards for other high reliability/availability/security industries, such as
Space
Aircraft
...
8
votes
9answers
577 views
What are techniques for allowing safe software upgrades in embedded systems
Upgrading software for embedded devices often has the possibility of "bricking" the device, e.g. if power should happen to fail while in the midst of writing software to FLASH. Two questions:
What ...
7
votes
2answers
293 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
2answers
781 views
CA2000 passing object reference to base constructor in C#
I receive a warning when I run some code through Visual Studio's Code Analysis utility which I'm not sure how to resolve. Perhaps someone here has come across a similar issue, resolved it, and is ...
7
votes
2answers
776 views
Can I rely on Facebook Connect?
I have been looking into using Facebook Connect for a new web site I am building, however the Facebook API seems to be a little flaky.
The code I have been using is basic, however the example ...
6
votes
5answers
359 views
How to test reliability of my own (small) embedded operating system?
I've written a small operating system for embedded project running on small to medium target.
I added some automated unit test with a high test code coverage (>95%), but the scope is only the static ...
5
votes
4answers
880 views
Can the unload Event be Used to Reliably fire ajax Request?
I need a method to monitor user edit sessions, and one of the solutions I'm reviewing will have me using an unload event to send an ajax request to inform the server of the end of the edit session. ...
5
votes
8answers
566 views
How do you evaluate reliability in software?
We are currently setting up the evaluation criteria for a trade study we will be conducting.
One of the criterion we selected is reliability (and/or robustness - are these the same?).
How do you ...
4
votes
2answers
217 views
Does Windows Azure have anything readily available against denial of service attacks?
We're developing a web service hosted in Windows Azure. We expect that at some moments bad guys try to DDOS it. I Googled and didn't find anything new and definitive (this one is rather vague) about ...
4
votes
1answer
810 views
How reliable is HtmlUnitDriver?
Obviously, the answer to the question depends on a number of environmental factors.
In general, I'm wondering what people's experiences are with HtmlUnitDriver as a reliable tool that can be ...
4
votes
3answers
236 views
Benefits of using MS Queue
How can using something like MSMQ help with scalability and reliability?
In the scenario of one web server to one database server does it help at all?
Any comments or links would be greatly ...
4
votes
3answers
216 views
What will it take for Transactional Memory to be viable?
I've been doing some work on transactional memory and its viability for systems programming (databases, operating systems, servers, etc.). My own experience employing transactions, together with ...
4
votes
6answers
311 views
How best can I isolate my application from an unreliable database?
I have a Java SOAP data service which sits on top of a Sybase database which, for reasons out of my control, has unreliable performance. The database is part of a vendor package which has been ...
4
votes
3answers
581 views
Recommended techniques for field updating embedded Linux safely
Embedded Linux based devices often require a mechanism to update applications and system files. For example, a (non-networked) lab instrument with a USB port can get software updates from a USB stick. ...
3
votes
1answer
123 views
Apache Camel smtp component hangs the whole bus if mailserver is down
I have what I think is a very common scenario. I have an invoice system that is managed via Apache Camel. When something goes wrong I would like to have an email alert sent to the administrator.
...
3
votes
2answers
2k views
Facebook Graph API - get ID for a URL?
This seems like a pretty obvious, basic thing to expect from the Graph API, but I'm having serious difficulty with it. All I want to do is get the ID for any particular URL. They have a method for ...
3
votes
4answers
214 views
Is using enum for integer bit oriented operations in C++ reliable/safe?
Consider the following (simplified) code:
enum eTestMode
{
TM_BASIC = 1, // 1 << 0
TM_ADV_1 = 1 << 1,
TM_ADV_2 = 1 << 2
};
...
int m_iTestMode; ...
3
votes
1answer
2k views
Linux HA / cluster: what are the differences between Pacemaker, Heartbeat, Corosync, wackamole?
Can you help me understand Linux HA?
Pacemaker, Heartbeat, Corosync seem to be part of a whole HA stack, but how do they fit together?
How does wackamole differ from Pacemaker/Heartbeat/Corosync? ...
3
votes
4answers
152 views
How may I teach that SOAP is not a reliable transport?
I need to teach that a HTTP SOAP call may be received but the caller may not get the response due to a network failure (among other problems). (This problem made WS-ReliableMessaging be developed)
...
3
votes
1answer
189 views
When does ExecuteCodeWithGuaranteedCleanup actually guarantee cleanup?
I have been reading about Reliability Features in .NET and have written the following class to explore ExecuteCodeWithGuaranteedCleanup
class Failing
{
public void Fail()
{
...
3
votes
3answers
128 views
When running a shell script, how can you protect it from overwriting or truncating files?
If while an application is running one of the shared libraries it uses is written to or truncated, then the application will crash. Moving the file or removing it wholesale with 'rm' will not cause a ...
3
votes
1answer
364 views
How reliable are unix domain sockets?
I'm trying to figure out a protocol to use with domain sockets and can't find information on how blindly the domain sockets can be trusted.
Can data be lost? Are messages always received in the same ...
3
votes
5answers
628 views
Building a life-critical System using Agile
Looking at the general trend of comments in my question about Building an Aircraft using Agile, the biggest problem other than cost appears to be safety.
Do people feel that it is not possible to ...
2
votes
1answer
58 views
Reliability of corrupted state exception handling
I'm currently looking into reliability features and exception handling of C# / .NET
These are especially the HandleProcessCorruptedStateExceptions attribute and CER s with PrepareConstrainedRegions.
...
2
votes
1answer
148 views
Reliable udp in c#
There are several articles on the internet about how to make udp reliable. I have not been able to find one on c#. So maybe I can implement my algorithm.
from researching on the internet I believe ...
2
votes
1answer
79 views
Can SqlException.LineNumber be used to identify whether an exception is related to connectivity?
I looked though Transient Fault Handling Framework code trying to address temporary loss of connectivity to SQL Server. There's one key point there: SqlException is thrown both when there's an ...
2
votes
1answer
240 views
How do I address sudden loss of connection to SQL Azure in my Azure role?
My Azure role grabs stuff to process from a database - it holds an instance of System.Data.SqlClient.SqlConnection and periodically creates an SqlCommand instance and executes an SQL query.
Now once ...
2
votes
2answers
92 views
Memory and some more information about JavaScript
How does the memory work in JavaScript? Is there a stack? A heap? How does memory management work?
When does the binding between the varriable and its place in memory occurs? Before or during ...
2
votes
6answers
194 views
Enclosing external jQuery script
I have an external JavaScript file that will be used on pages with lots of other scripts. My script involves a lot of jQuery that listens for events, and by design, I have many global vars declared. ...
2
votes
4answers
206 views
How do I detect unexpected worker role failures and reprocess data in those cases?
I want to create a web service hosted in Windows Azure. The clients will upload files for processing, the cloud will process those files, produce resulting files, the client will download them.
I ...
2
votes
3answers
195 views
How do I make my Windows Azure application resistant to Azure datacenter catastrophic event?
AFAIK Amazon AWS offers so-called "regions" and "availability zones" to mitigate risks of partial or complete datacenter outage. Looks like if I have copies of my application in two "regions" and one ...
2
votes
4answers
483 views
Firebird for cloud application?
I will start a POS (point of sale) system that will begin as a regular intranet system (in his initial-beta stage) but I want to scale later to a cloud offering. I will offer it as a hybrid solution.
...
2
votes
5answers
330 views
Improving UDP reliability
I am building a small UDP based server. the server is based on .Net and uses the Socket class it self. I'm using completion ports through ReceiveMessageFromAsync, and the async send.
My problem is ...
2
votes
2answers
608 views
Is activemq reliable?
We have put ActiveMQ on a fresh server. Configured it to use 'kahadb' (the preferred as we read) and set it to allow the file to expand to 2gb.
Then when we put load on the queue (+- 500/sec), within ...
2
votes
0answers
101 views
Using a Constrained Execution Region to Handle StackOverflowExceptions
Having read this article (and others) on .NET reliability features, I am led to believe that the following code should handle StackOverflowExceptions:
class Program
{
private static int ...
2
votes
1answer
149 views
What's the reliability of Google Chart API service?
I'm considering using Google Chart API. Is the API stable? Is the service uptime any good? There are no warranties about it on the Terms of Service. Has anyone known of large downtime periods?
2
votes
1answer
246 views
reliability: Master/slave pattern is doomed?
More and more of the noSQL databases that are in the spotlight uses the master/slave pattern to provide "availability", but what it does (at least from my perspective) is creating the weak link in a ...
2
votes
3answers
382 views
Force memcached to write to all servers in pool
I have thought a bit on how to make sure that a particular key is distributed to ALL memcached servers in a pool.
My current, untested solution is to make another instance of memcached, something ...
2
votes
1answer
181 views
Methodology/Template for calculating Application reliability five Nines/Six Nines?
any concrete suggestions for computing application/System reliability ?
2
votes
4answers
430 views
How to improve email sending and delivery reliability?
The current application uses simple Java Mail to send couple emails a day but some of the emails never make it to the client.
Based on the application server logs there has been couple mail server ...
2
votes
2answers
418 views
NO-SQL reliable for small bussines app?
I'm deciding between go for a NON-SQL engine or a regular SQL one for a document managment system for small bussines.
I have experience with firebird/sql server and found a good track of reliability ...
2
votes
8answers
539 views
Are sockets reliable?
Is it a good idea to use sockets to send data between two servers, or should I use something like MQ for moving data.
My questions: are sockets reliable, if I need once only/assured delivery of the ...
2
votes
9answers
295 views
How you test your applications for reliability under badly behaving i/o
Almost every application out there performs i/o operations, either with disk or over network.
As my applications work fine under the development-time environment, I want to be sure they will still do ...
2
votes
1answer
405 views
Good *free* markov modeling tools?
I would like to use Markov models for some architecture simulations, but don't have a budget to buy anything like, eg, SHARPE. Does anyone know of a freeware tool, either platform-independent or ...
2
votes
2answers
866 views
Redundancy, reliability and fault tolerance in C# - where to look for examples?
I want to learn how to create truly robust applications in .net - ones that are fault tolerant and are capable of withstanding unexpected situations. Where can I find literature/guidance on this ...