Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
299 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 ...
6
votes
1answer
123 views

Altering MySQL InnoDB table with minimal downtime

I've got a huge InnoDB table(>500 millions rows) which I'd like to partition by hash in order to decrease the index size. I'd like to achieve this with a minimal downtime(e.g 10 minutes is ...
5
votes
10answers
226 views

What are you doing during your downtimes to still be productive?

Lately I found myself having a lot of downtime at work. Unfortunately my current company doesn't have a "research project" policy so I can't put too much effort on a side project (or I may never ...
4
votes
1answer
197 views

App Engine downtime

Does Google's App Engine have excessive downtime, specifically with regards to datastore writes? Additionally, downtime seems to be scheduled during high traffic times, e.g., in the middle of the ...
4
votes
7answers
274 views

gracefully upgrading a website

Is there a preferred method of gracefully upgrading a web site? I have a completely new code base ready to go on a site, but updating it will take several hours. I don't want the site to be down the ...
3
votes
1answer
95 views

Consequences of ARCHIVELOG

The guys responsible for the backup of our servers get our database (a large one) offline for over 6h for the whole backup scene. I spoke to them asking if we could break that down to smaller and ...
2
votes
2answers
230 views

Fail-safe datastore updates on app engine

The app engine datastore, of course, has downtime. However, I'd like to have a "fail-safe" put which is more robust in the face of datastore errors (see motivation below). It seems like the task ...
2
votes
2answers
614 views

How may I update my Java EE application with no downtime?

How may I automate (no downtime) deployment? And be able to turn any server off for maintenance. What tools should I use? I am using Tomcat but I am willing to move to other Java EE server best ...
2
votes
2answers
216 views

Reasonable Downtime

I run about 5 different hosted servers, through a variety of hosting providers. In the past two months, one of the servers I work on has been down twice. Both times were unexpected and fairly long ...
1
vote
4answers
144 views

Detecting if the JQuery CDN is down and coping with it

I'm launching my own site tomorrow, and I'm expecting a couple hundred visits. I wrote this script based on what PHP.net told me: <? $f = fsockopen("code.jquery.com", 80, $errno, $errstr, 30); ...
1
vote
5answers
116 views

PHP Calculation 'downtime'

I've made an program in PHP that stores in a MySQL database when it's working. The table that shows whether the program is working or not looks like this: Table_name: downtime Working(int) ...
1
vote
4answers
124 views

Is pinging to a site a good way of checking whether it's down or not?

I'm trying to write a small website monitoring program, that can check my web hosts to see whether they are down or not, and to calculate the uptime or warn me if it's down. It's going to be a ...
1
vote
1answer
323 views

How to achieve zero downtime deployment with database schema changes

I need to achieve zero downtime deployment for my e-commerce site while performing database schema changes. The database is sql server 2005. Can someone verify whether the following steps are ...
1
vote
1answer
71 views

Datastore and task queue downtime correlation

What correlation is there between datastore and task queue downtime? (I'd like to use the task queue to defer some operations in the case of datastore downtime.)
1
vote
1answer
248 views

How to move Git repositories and minimize downtime

I will be moving Git repositories from an older SCM server to a new one. My main concern (other than fidelity, of course) is to minimize downtime. Here is my plan: On the new machine, clone each ...
1
vote
4answers
261 views

editing web.config - a cause of downtime?

On a site I'm working with, we've got two classes of changes they can ask for. On one hand, they've got stuff that I'd have to rebuild and redeploy. They count these as "downtime" changes, because ...
0
votes
1answer
151 views

Zero downtime on Heroku

Is it possible to do something like the Github zero downtime deploy on Heroku using Unicorn on the Cedar stack? I'm not entirely sure how the restart works on Heroku and what control we have over ...
0
votes
2answers
120 views

How to manage Tomcat release/deploy to have least downtime with Tomcat6

I realize Tomcat7 has the feature of parallel deployment, but I was not able to use it because it seemed to have some bugs on Linux so I had to downgrade to Tomcat6. What I am wondering is how to set ...
0
votes
0answers
80 views

calculating partial downtime of a web application

We need to calculate the availability of a j2ee web application taking into account the application’s complete downtime and partial downtime.Partial downtime is considered in cases where the ...
0
votes
1answer
129 views

website downtime control strategies

Could someone pointing out what is the best way to control the website downtime; especially when having many sites running?