Questions tagged [reliability]

Reliability is the ability of a system or component to perform its required functions under stated conditions for a specified period of time.

Reliability is the ability of a system or component to perform its required functions under stated conditions for a specified period of time.

288 questions
102
votes
4 answers

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 s That means the system only has less than one…
Ning
  • 2,710
  • 2
  • 13
  • 21
39
votes
3 answers

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 struggling to understand exactly how fault-tolerance is…
joshng
  • 1,431
  • 14
  • 15
36
votes
5 answers

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. (See: Monitoring User Sessions to Prevent Editing…
Yi Jiang
  • 46,385
  • 16
  • 133
  • 131
20
votes
6 answers

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…
Dusda
  • 3,288
  • 5
  • 34
  • 58
19
votes
4 answers

Redis - Better way of cleaning the processing queue(reliable) while using BRPOPLPUSH

Our Current Design Env Redis 2.8.17 We have implemented our reliable queue, using the pattern similar to the one described in redis documentation, under RPOPLPUSH However, we are using BRPOPLPUSH considering its blocking nature, and LPUSH for…
aspdeepak
  • 2,077
  • 1
  • 25
  • 34
17
votes
8 answers

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 legacy software. While I'm vigilant about everything…
tolak
  • 203
  • 1
  • 5
16
votes
1 answer

Does Windows Azure offer static IP for VMs?

I have been trialling the Bizspark / Azure offer for my company. When we accidentally exceeded our free usage limit by 1c, Microsoft deleted our VMs and handed our IP addresses to other customers. This was done instantly, out of hours and without…
14
votes
2 answers

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 in a while (usually once in several days) running…
sharptooth
  • 159,303
  • 82
  • 478
  • 911
14
votes
6 answers

What to use ? time() function or $_SERVER['REQUEST_TIME'] ? Which is better?

Which one among these two time functions is better? I have a form on my website which is submitted by thousands of users every microsecond or less , thus , thousands of requests at the same time on my server. So I want to use the one which does not…
sqlchild
  • 7,928
  • 27
  • 98
  • 157
13
votes
2 answers

Android timer that works when device is sleeping

I'm writing a sports app that needs to track the elapsed time of quarter/half/period. Elapsed time needs to be accurate to the second. The game clock needs to continue to run even if the user explicitly places the device in sleep mode by pressing…
Rich
  • 201
  • 3
  • 9
13
votes
2 answers

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 service that runs every hour. if the service…
DarthVader
  • 46,241
  • 67
  • 190
  • 289
12
votes
6 answers

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…
Adam Davis
  • 87,598
  • 55
  • 254
  • 328
12
votes
1 answer

S3 high-availability + reliability for backups

I did some research on this, but wasn't able to find any substantial answers, so turning to StackOverflow. How reliable is Amazon's S3 in terms of high-availability and reliability? I realize there are SLAs for it, but what about if a availability…
Suman
  • 8,407
  • 5
  • 43
  • 61
11
votes
1 answer

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() { RuntimeHelpers.PrepareConstrainedRegions(); try …
Richard Ev
  • 48,781
  • 54
  • 181
  • 273
11
votes
4 answers

Is a Qt-based UI reliable enough to be used in a medical device?

I work for a small company developing a complex medical device with a rich UI. We are currently at the early stages of design. The application is targeted for Windows (desktop only) and preferably should be written only in C++. After some research…
user1526557
  • 111
  • 1
  • 4
1
2 3
19 20