我正在为 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),但是当我开始调试时,它返回正确的结果,知道吗,为什么???