What is a way to handle database unavailability and redirect queries from unavailable slave to another one in Django 1.2?

Btw, i found out, that it was discussed: http://code.djangoproject.com/wiki/MultipleDatabaseSupport#Requirements (see "Transparently handling database failure")

UPD> I use PostgreSQL backend (probably will use pg pool or some other potgres cluster) under linux

link|improve this question

i suppose, there is a way to do it somehow via database router, but how? – DataGreed Jul 9 '10 at 8:33
feedback

3 Answers

up vote 3 down vote accepted
+25

If you are using a PostgreSQL backend and are on a Linux/BSD etc. system, consider using pgpool: http://pgpool.projects.postgresql.org/ This utility handles the connections to the DB server for you, so you only connect to pgpool. No need for you to implement any more logic. Just connect to pgpool, not to PostgreSQL itself.

link|improve this answer
Hm, thx, i'll look deeper into this. What about django configuration? Can pgpool be used with psycopg just as a normal PostgreSQL database? – DataGreed Jul 21 '10 at 13:51
1  
@DataGreed - yes pgpool listens on a different port, that's all. Your Django project uses this port, so pgpool works as a transparent proxy to the db. – mawimawi Jul 22 '10 at 10:28
thank you, mawimawi – DataGreed Jul 26 '10 at 8:43
feedback

Unfortunately, at the moment there's no way to use the DATABASE_ROUTERS feature in order to handle an unavailable database, you'll have to use an external tool as others have suggested.

link|improve this answer
feedback

There's also a proxy for MySQL, MySQL Proxy. You would connect to the proxy, and that proxy would know how to handle failover. In the case of MySQL Proxy, it is designed for failover, so I expect it to be both stable and knowing how to handle failures:)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.