Tagged Questions
The high-availability tag has no wiki summary.
18
votes
4answers
482 views
How to Guarantee Message delivery with Celery?
I have a python application where I want to start doing more work in the background so that it will scale better as it gets busier. In the past I have used Celery for doing normal background tasks, ...
13
votes
13answers
1k views
How do you update a live, busy web site in the politest way possible?
When you roll out changes to a live web site, how do you go about checking that the live system is working correctly? Which tools do you use? Who does it? Do you block access to the site for the ...
11
votes
4answers
2k views
Design Patterns (or techniques) for Scalability
What design patterns or techniques have you used that are specifically geared toward scalability?
Patterns such as the Flyweight pattern seem to me to be a specialized version of the Factory ...
10
votes
3answers
104 views
mobile detection high traffic site
i have a high traffic website (1+ Millions visitors per day) and i need to detect their user agent. i have a list over 1000 mobile devices.
i run memcache to output dynamic content based on what page ...
10
votes
4answers
2k 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 ...
9
votes
3answers
691 views
How does Terracotta work in this situation?
So lets say I have an N sized server array set up like so:
I have a simple JavaBean/POJO:
package example;
public class Person {
private OtherObject obj;
public void setObj(OtherObject ...
8
votes
2answers
2k views
Redis master/slave replication - single point of failure?
How does one upgrade to a newer version of Redis with zero downtime? Redis slaves are read-only, so it seems like you'd have to take down the master and your site would be read-only for 45 seconds or ...
7
votes
1answer
2k views
redis: Handling failover?
Redis really seems like a great product with the built in replication and the amazing speed. After testing it out, it feels definitely like the 2010 replacement of memcached.
However, since when ...
6
votes
2answers
684 views
Calculating the probability of system failure in a distributed network
I am trying to build a mathematical model of the availability of a file in a distributed file-system. I posted this question at MathOverflow but this might as well be classified as a CS-question so I ...
6
votes
6answers
291 views
How to make active services highly available?
I know that with Network Load Balancing and Failover Clusteringwe can make passive services highly available. But what about active apps?
Example: One of my apps retrieves some content from a ...
6
votes
7answers
1k views
What design patterns are most leveraged in creating high availability applications?
Likewise are there design patterns that should be avoided?
6
votes
3answers
2k views
5
votes
3answers
277 views
Windows Services — High availability scenarios and design approach
Let's say I have a standalone windows service running in a windows server machine. How to make sure it is highly available?
1). What are all the design level guidelines that you can propose?
2). ...
5
votes
3answers
1k views
How to connect to mirrored SQL Server after failover?
I set up a database mirroring and then used this connectionstring to connect to it:
Data Source={0};Failover Partner={1};Initial Catalog=AdventureWorks;
Integrated Security=True;
After ...
5
votes
5answers
158 views
Challenges and Best Practices for Failing Over Services
Does anyone know of any established best practices for running Windows services (in my case, developed in .NET) such that they will (automatically) fail over correctly to another server, for high ...
5
votes
6answers
1k views
Normalize or Denormalize in high traffic websites
what is the best practice for database design for high traffic websites like this one stackoverflow?
should one must use normalize database for record keeping or normalized technique or combination ...
5
votes
6answers
679 views
High availability and scalable platform for Java/C++ on Solaris
I have an application that's a mix of Java and C++ on Solaris. The Java aspects of the code run the web UI and establish state on the devices that we're talking to, and the C++ code does the real-time ...
4
votes
3answers
257 views
architecture for high availability
I have this scenario:
You have a factory process line which runs 24/7. Downtime is extremely expensive.
The software controlling all different parts must use a shared form of database storage
The ...
4
votes
4answers
529 views
Java HA framework
I am writing a small proxy application which should be redundant, e.g. primary proxy will be running on one server and the redundant one will run on a separate server. Is there a simple ...
4
votes
1answer
36 views
Partitioning requests in code among several servers
I have several forum servers (what they are is irrelevant) which stores posts from users and I want to be able to partition requests among these servers. I'm currently leaning towards partitioning ...
4
votes
7answers
431 views
Practical SOA for a newbie
I am a total newbie to the world of SOA. As such, I am looking at some "SOA frameworks/technologies", and trying to understand how to utilize them to build a highly scalable (Facebook class) website.
...
4
votes
2answers
608 views
Lightweight open-source shared file system over network
We have two web servers with load balancing. We need to share some files between those servers. These would be uploaded files, session files, various files that php applications create.
We don't want ...
4
votes
10answers
2k views
High Availability Storage
I would like to make 2 TB or so available via NFS and CIFS. I am looking for a 2 (or more) server solution for high availability and the ability to load balance across the servers if possible. Any ...
3
votes
3answers
310 views
Single Point of Failure on scaling application across AWS
We have a Rails-based application, deployment infrastucture binds to AWS. Current schema included the following layers:
load balancer (HaProxy)
Rails-application (EC2) x2
MySQLd database (EC2 ...
3
votes
0answers
94 views
Design level patterns for highly available Linux applications
Given toolkits like Linux-HA and cluster layers on top like Corosync; file-system replicators like DRBD and other various bits and pieces there are the components available to developers to build ...
3
votes
3answers
779 views
ZooKeeper alternatives? (cluster coordination service)
ZooKeeper is a highly available coordination service for data centers. It originated in the Hadoop project. One can implement locking, fail over, leader election, group membership and other ...
3
votes
1answer
98 views
Database topology design confusion
Background
I run (read: inherited) a network that is setup very similar to a shared hosting provider. There are between 300-400 sites running on the infrastructure. Over the years the database ...
3
votes
2answers
364 views
Zero downtime deployment for Java apps
I am trying to build the very lightweight solution for zero downtime deployment for Java apps. For the sake of simplicity lets think that we have two servers. My solution is to use:
1. On the "front" ...
3
votes
2answers
1k views
rabbitmq HA cluster
I am wanting to setup RabbitMQ as a two (or more) node cluster with HA.
Use case: a client producer app (C#.NET) knows that the cluster has two nodes and publishes to the cluster. Various consumer ...
3
votes
5answers
171 views
How to build an available web application
Let's say that we are about to build an web application where high availability is top focus. Our customers are companies, so downtime are equal to loss of revenue for everyone involved.
To sum it ...
3
votes
4answers
114 views
What technologies exist for app level clustering?
Let's say I have an application that is guaranteed to overwhelm one server even after optimizations. Is there a technology that allows a web application to be split over multiple servers while ...
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
0answers
98 views
Looking for a recommendation on measuring a high availability app that is using a CDN [closed]
I work for a Fortune 500 company that struggles with accurately measuring performance and availability for high availability applications (i.e., apps that are up 99.5% with 5 seconds page to page ...
3
votes
6answers
363 views
High Availability and Disaster Recovery Software AntiPatterns
If you had to audit a Java application for worst-practices when it comes to high-availability and disaster recovery, you would probably look for hardcoded IP addresses and suboptimal caching of bind ...
3
votes
1answer
111 views
What is the right solution for a high-availability authorization service?
I work for a software shop, which has an in house predictive dialer product, and we need to implement a solution to obey to the DO-NOT-CALL lists.
Basically, I have a database with the ...
3
votes
1answer
592 views
Zero Downtime with Hibernate
What changes to a database (MySQL in this case) does Hibernate survive (data, schema, ...)?
I ask this because of zero downtime with Hibernate.
Change database, split app servers into two ...
3
votes
6answers
608 views
How to design and verify distributed systems?
I've been working on a project, which is a combination of an application server and an object database, and is currently running on a single machine only. Some time ago I read a paper which describes ...
3
votes
1answer
135 views
PostgreSQL availability and merges
Is there a PostgreSQL HA solution that can handle a splitbrain situation gracefully. To elaborate, the system i'm working on is expected to run in several areas with users close to the servers there ...
2
votes
2answers
120 views
Tomcat7 parallel deployment feature: experiences using it on production servers? [closed]
I've recently learned about Tomcat 7's feature to allow multiple versions of the same webapp deployed at the same time:
http://www.tomcatexpert.com/blog/2011/05/31/parallel-deployment-tomcat-7
...
2
votes
1answer
372 views
mongodb automatic failover / high availability on aws
I need the proper way of failover mechanism for mongodb on aws ec2. I know failover can be accomplished by replica sets, but what is the best way to fire a new mongo installed ubuntu-ec2 ami node and ...
2
votes
1answer
82 views
How can my web application find the currently running master database?
I'd like to set up two SQL Server 2008 R2 instances with synchronous mirroring and automatic failover. If I understand this scenario correctly, the SQL servers switch roles (principal and failover) ...
2
votes
2answers
168 views
PHP Replicated Database Sessions Failover
I have 2 servers available for failover. The database is replicated (MySQL) as a Master-Master, such that, each server runs a copy of the full-stack. I see the session table get updated when I'm on ...
2
votes
1answer
244 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
2answers
476 views
Postgresql pg_standby takes forever to perform failover
I have a working WAL shipping setup with a warm standby slave server applying the WAL files.
When I create the pg_standby trigger file, it detects this at once, but it takes about 10-15 minutes to ...
2
votes
1answer
792 views
How do CPG of Corosync, ZeroMQ, and Spread compare for messaging?
I'm interested in:
Performance
Latency
Throughput
Resource usage (CPU, memory, ...)
High availability
No single point of failure
Features
Transport options
Routing options
Stability
Community
...
2
votes
4answers
420 views
How to achieve high availability?
My boss wants to have a system that takes into concern of continent wide catastrophic event. He wants to have two servers in US and two servers in Asia (1 login server and 1 worker server in each ...
2
votes
2answers
665 views
How to hand-over a TCP listening socket with minimal downtime?
While this question is tagged EventMachine, generic BSD-socket solutions in any language are much appreciated too.
Some background:
I have an application listening on a TCP socket. It is started ...
2
votes
2answers
394 views
How to refresh a MySQL table without website interruption?
Once a day I need to update an MySQL table with a new file downloaded from the Net using ftp and then mysqlimport. However, I want my website to keep running smoothly during the mysqlimport operation, ...
2
votes
3answers
231 views
What is the current software development/design book you are reading? [closed]
I am constantly interested in reading interesting software development or design books. I think this post could be a great source to share opinions on books currently read by users. Especially I would ...
1
vote
2answers
49 views
Could Stackoverflow run on SQL Web Edition
I am starting a new web venture that may need to scale to a high number of users.
I am confident with the SPLA licencing for SQL Web edition, but want to know if I will need to factor in upgrading to ...