3

我正在为 ASP.net MVC 4 中的 Solr 编写前端,我想连接到 Zookeeper 并读取活动节点并连接到随机节点。为此,我编写了以下代码:

public class zkResolver
{
    private static readonly TimeSpan timeout = TimeSpan.FromSeconds(400);
    private const String LIVE_NODES_ZKNODE = "/live_nodes";
    public String ErrorMsg { get; set; }
    public static String getActiveInstance(String instanceUrl)
    {
        ZooKeeper zk = new ZooKeeper(instanceUrl, timeout, null);
        List<String> activeNodes = zk.GetChildren(LIVE_NODES_ZKNODE, false);
        Random rnd = new Random();
        int i = rnd.Next(0, activeNodes.Count - 1); //lets shuffle baby
        return activeNodes[i];
    }
}

但是,当我运行它时它返回-4(CONNECTIONLOSS),但是当我开始调试时,它返回正确的结果,知道吗,为什么???

4

1 回答 1

2

好的,我已经解决了这个问题。ZooKeeper 在 ctor 中具有异步连接,因此您必须等到它与 smth 连接,如下所示:

        while (zk.State == ZooKeeperNet.ZooKeeper.States.CONNECTING)
        {
            Thread.Sleep(TimeSpan.FromSeconds(1));
        }
于 2013-07-30T16:58:44.980 回答