hail: don't relocate to current primary node
authorIustin Pop <iustin@google.com>
Mon, 25 May 2009 19:54:15 +0000 (20:54 +0100)
committerIustin Pop <iustin@google.com>
Mon, 25 May 2009 20:12:52 +0000 (21:12 +0100)
This patch fixes the relocate-to-primary-node problem, and doesn't mark
the excluded nodes as offline anymore (we don't use them anyway, so
let's not use a different/fake cluster state).

hail.hs

diff --git a/hail.hs b/hail.hs
index 217c799..c9d6f5f 100644 (file)
--- a/hail.hs
+++ b/hail.hs
@@ -92,15 +92,13 @@ tryReloc :: (Monad m) =>
 tryReloc nl il xid 1 ex_idx =
     let all_nodes = getOnline nl
         inst = Container.find xid il
-        valid_nodes = filter (not . flip elem ex_idx . idx) all_nodes
+        ex_idx' = (Instance.pnode inst):ex_idx
+        valid_nodes = filter (not . flip elem ex_idx' . idx) all_nodes
         valid_idxes = map Node.idx valid_nodes
-        nl' = Container.map (\n -> if elem (Node.idx n) ex_idx then
-                                       Node.setOffline n True
-                                   else n) nl
         sols1 = map (\x -> let (mnl, _, _, _) =
-                                    Cluster.applyMove nl' inst
+                                    Cluster.applyMove nl inst
                                                (Cluster.ReplaceSecondary x)
-                            in (mnl, [Container.find x nl'])
+                            in (mnl, [Container.find x nl])
                      ) valid_idxes
     in return sols1