From ae655eb4fdc7a7b35b2f305eef3bee15b0391695 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Fri, 30 Mar 2018 14:18:51 +0900 Subject: [PATCH] Add TODO list This file will collate various requests and ideas for future developement. In particular it will reference requests which come in via the GitHub issue tracker, so we can acknowledge and close off the request and not have an open unresolved issue hanging around. --- TODO.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 TODO.md diff --git a/TODO.md b/TODO.md new file mode 100644 index 00000000..acbfd571 --- /dev/null +++ b/TODO.md @@ -0,0 +1,20 @@ +TODO +==== + +This file contains a list of improvements which are desireable and/or have +been requested, and which we aim to address/implement when time and resources +permit. + +It is *not* a roadmap and there's no guarantee of any item being implemented +within any given timeframe. + + +Enable suspension of repmgrd failover +------------------------------------- + +When performing maintenance, e.g. a switchover, it's necessary to stop all +repmgrd nodes to prevent unintended failover; this is obviously inconvenient. +We'll need to implement some way of notifying each repmgrd to suspend automatic +failover until further notice. + +Requested in GitHub #410 ( https://github.com/2ndQuadrant/repmgr/issues/410 )