Questions tagged [downtime]

The term downtime is used to refer to periods when a system is unavailable.

Downtime refers to a period of time that a system fails to provide or perform its primary function.

Reliability, availability, recovery and unavailability are related concepts. The unavailability is the proportion of a time-span that a system is unavailable or offline. This is usually a result of the system failing to function because of an unplanned event, or because of routine maintenance (a planned event).

The term is commonly applied to networks and servers. The term is also commonly applied in industrial environments in relation to failures in industrial production equipment.

Some facilities measure the downtime incurred during a work shift, or during a 12 or 24-hour period. Another common practice is to identify each downtime event as having an operational, electrical or mechanical origin.

The opposite of downtime is uptime.

106 questions
1
vote
4 answers

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 we display a nice little splash screen and we test…
dnord
  • 1,702
  • 2
  • 18
  • 34
0
votes
0 answers

nagios core not honouring scheduled downtime parent child

We have a nagios core 4.4.10. We do use the parent child relations. So in Windows environment do have hyper-v hosts. The hosts running multiple VMs which are also monitored. We do use (or trying) scheduled downtime. For that I created a time…
0
votes
1 answer

Azure API Management Maintenance plan

I had deployed a Azure API Management service in Developer Pricing tier. But it is going into frequent Maintenance plan. So, I changed my pricing tier to Basic. So, How much of downtime will be there after changing the tier? And also, the basic…
0
votes
0 answers

Systems going down when I run some update query on DB

I am using Postgres for DB and have a big table (+10.000.000 rows inside). When I run the update query (update table set field=1 where id in ("maximum 2500 id I put there")) my system stops working. I put Grafana monitoring to check which parameters…
0
votes
1 answer

Downtime required for 20 GB of Neo4j DB data migration to Neptune

I want to migrate 20 GB of Neo4j Graph data to AWS Neptune. how much Neo4j DB downtime is needed for entire data migration and how to handle the data lost during downtime.
anisha
  • 1
0
votes
1 answer

Is this zero-downtime database migration plan viable?

I am pondering about performing a zero-downtime database migration and came up with minimum necessary steps. By "migration" I mean any change in the same database that is not backward-compatible such as renaming, splitting or dropping a…
raiks
  • 1,270
  • 1
  • 15
  • 12
0
votes
0 answers

Terraform aws downtime during apply

I create some resources with terraform: EC2, target group, autoscaling roup, load balancer and more... When I change some paramas, for example instance type, the current target group drain the targeted EC2 before the new EC2 are added. So I have a…
Daniele
  • 538
  • 1
  • 5
  • 17
0
votes
2 answers

What is a formula for calculating overlapping downtime periods in Excel?

I have periods of downtime per calendar month and I wish to calculate the total: Outage Start Outage End Outage (mins) 05/10/2021 15:00 05/10/2021 18:00 180 06/10/2021 16:00 06/10/2021 18:00 120 06/10/2021 17:00 06/10/2021…
0
votes
1 answer

Standalone Health Checks

Minimum Interval - The lowest allowed interval between checks: Pro: 60 Business: 15 Enterprise: 10 This is the interval in the Documentation. Is it in seconds?
0
votes
1 answer

Zero Downtime Updates on kubernetes. When there is a request of uploading files

My goal is to do a zero downtime updates on kubernetes. But, there is a problem related to a file upload. the situation is when user uploads a file, webserver stores it first. and WAS saves metadatas of a file to DB. so the problem is when we…
0
votes
0 answers

is it possible to zero-downtime with only one pm2 fork mode instance using the pm2 reload command?

Hi I am making api server with nodejs and pm2. I have a question. is it possible to zero-downtime with only one pm2 fork mode instance using the pm2 reload command? Or is it essential to have two instances of pm2 cluster mode to implement zero…
syoo
  • 23
  • 4
0
votes
1 answer

Deploy on IIS with Zero Downtime using ARR

I am trying to figure out steps for deploying on IIS using ARR (Application Request Routing). We have 2 production servers WEB1 and WEB2. What I understood from research is, follow the below blue-green deployment process: 1) Turn all traffic on…
IgnitedMind
  • 307
  • 5
  • 17
0
votes
1 answer

Record discord bot uptime with uptimerobot.com

I'm making a statuspage(statuspage.io) for my discord bot, and I want to record the downtime automatically with uptimerobot. But I have no idea how. Does a discord bot (written in python) use a specific port, which can be used to see if the bot is…
NanderTGA
  • 5
  • 1
  • 6
0
votes
1 answer

How do I prevent python logging module from raising errors stopping execution on downtime, permanently retry and buffer events

I have a Python process whose output is logged, among other handlers, to a syslog server over tcp. The syslog server may incur in some downtime from time to time. I need the script to run regardless of the logging mechanism. Are there any…
0
votes
1 answer

How is a rename column migration performed?

I have a question about how to properly perform a database migration, specificaly a rename column. Suppose the table has a column A and I want to rename it to B. If I do the rename and then deploy the code that references B, after performing the…