- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
使用 Redis 官方教程和非环回 IP 地址在 Ubuntu 服务器 14.0 LTS (AZURE VM) 中配置 Redis 集群服务器,如 @Marcgravell article 中所述。 ,但在使用 Stackexchange.Redis 客户端时,某些键出现 MOVED 异常。嗨@Marcgravell,你能解释一下吗?谢谢。
最佳答案
我的程序终于可以运行了。感谢@hrishi18pathak。我已经从https://github.com/hrishi18pathak/StackExchange.Redis/tree/SEClusteringBugFix下载了代码2015 年 7 月 17 日起发生变化的分支。主要更改在 ConnectionMultiplexer 和 ConfigurartionOptions 类中。
<小时/>internal void UpdateClusterRange(ClusterConfiguration configuration)
{
if (configuration == null) return;
foreach (var node in configuration.Nodes)
{
// do not update cluster range if the node configuration is incompatible with the multiplexer
// endpoints configuration. If a user has specified endpoints in the multiplexer configuration using
// Dns endpoints, Stackexchange.redis returns the ConnectionMultiplexer object successfully
// after connecting to all the nodes in the connection string (using their host names).
// Also, before returning the multiplexer object it updates the mapping of nodes to their clusterslots
// and this mapping is of the format “DNS hostname:port” : “clusterSlotNumber”.
// However at the same time, the client also issues “CLUSTER NODES” command to each of the nodes in the above list
// (to determine master and slave configuration) and re-updates the cluster mapping with the output of the clusternodes command
// which now is going to contain IP addresses (redis-server itself does not understand host names).
// So the cluster mapping is now updated to the format: “IP Address” : “clusterSlotNumber”
// If the StackExchange.Redis has not been able to connect to all the nodes using their IP addresses by the time the first command (GET,SET)
// is issued to the cluster, it results in failure to connect to that particular node resulting in the “MOVED ERROR”
// (since it tries to hit a random node in the list subsequently)
if (node.IsSlave || node.Slots.Count == 0 || !IsNodeCompatibleWithConfiguration(node)) continue;
foreach (var slot in node.Slots)
{
var server = GetServerEndPoint(node.EndPoint);
if (server != null) serverSelectionStrategy.UpdateClusterRange(slot.From, slot.To, server);
}
}
}
/// <summary>
/// Checks if the specified node has the same format as that of
/// the endpoints specified in the multiplexer configuration i.e.
/// if all nodes are dns endpoints then the specified node has to be a dns endpoint
/// to be compatible.
/// </summary>
/// <param name="node"></param>
/// <returns>True if node is compatible with multiplexer configuration</returns>
private bool IsNodeCompatibleWithConfiguration(ClusterNode node)
{
return (this.configuration.HasAllDnsEndPoints() && (node.EndPoint is DnsEndPoint)) ||
(!this.configuration.HasDnsEndPoints() && !(node.EndPoint is DnsEndPoint));
}
<小时/>
internal bool HasAllDnsEndPoints()
{
return !endpoints.Any(ep => !(ep is DnsEndPoint));
}
我仍然需要验证此修复是否有任何影响。
关于azure - Redis 集群的 MOVED 异常 - StackExchange.Redis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30223105/
由于 PostgreSQL 人员选择的术语不当,这会让一些人感到困惑,但请耐心等待... 我们需要能够支持多个 PostgreSQL (PG) 集群,并将它们集群在多个服务器上,例如使用repmgr.
Hadoop会跑很多jobs,从Hbase读取数据,写数据到数据库。假设我有 100 个节点,那么有两种方法可以构建我的 Hadoop/Hbase集群: 100节点hadoop&hbase集群(1个b
在kafka中,我们能创建多种类型的集群,一般如下: 单节点——单个broker集群 单节点——多broker集群 多结点——多broker集群 kafka集群中主要有五个组件: Topic:主题主要
我想在两台机器上运行我的 MPI 程序,一台是 ubuntu 18.04,另一台是 Windows 10。是否可以使用不同的操作系统组成一个集群? (我正在使用 MPICH) 如果可能,怎么做?我在网
简介: 更新负载平衡集群中的节点的最佳实践是什么? 我们在 ha 代理负载均衡器后面使用 RabbitMQ 集群来支持我们的客户端轻松集群,as suggested in the RabbitMQ d
我正在尝试创建一个图表,我明确指定了许多节点的等级并指定了集群。以下代码生成我想要的图形类型: digraph { rankdir=LR subgraph cluster0 {
我正在尝试在 RABBITMQ 上进行集群。我添加了 2 个节点,但无法添加第 3 个节点。我已经聚集了 rabbit@node1 和 rabbit@node2。现在我正在尝试将 rabbit@nod
我在 MS Azure 的生产环境中启用了一个双集群多区域 HA。 我被要求重用同一个集群来使用微服务管理几个新项目。 这里的最佳做法是什么?我应该为每个应用程序创建一个集群吗?将不同集群中的每个项目
我正在尝试 flex 搜索,并且很难在具有3个 flex 搜索实例的单台计算机上创建集群。我对实例进行了以下更改: 在所有实例上更改了群集名称{cluster.name:es-stack} 在所有实例
我想创建一个redis集群,仅将特定的redis主机作为主服务器和从服务器。另外,我想自己指定哪个主机应该是哪个主机的副本。 目前,cluster-create command当在任何一个 Redis
我计划在具有负载平衡的集群中设置 Magento,那么是否可以让两个 Magento 安装指向同一个数据库? 如果可能的话 - 我应该如何配置这些服务器的基本 URL?服务器应该具有相同的名称吗? 最
我目前正在计划一个 Web 应用程序,我想计划它最终在集群上运行。 集群将由一个 php web 集群和一个 mysql 集群以及一个独立的存储单元组成(也许是一个集群,我真的不知道它是如何工作的:s
我已经安装了 elasticsearch 2.2.3 并在 2 个节点的集群中配置 节点 1 (elasticsearch.yml) cluster.name: my-cluster node.nam
我正在寻找现有的中间件解决方案,以解决服务集群/分布方面的问题,以实现负载平衡和可用性。我正在考虑基于消息传递系统(更具体地说,JMS)为此构建自己的基础设施。但是,如果可能的话,我宁愿使用已经存在的
在 Hadoop 集群中,数据是自动跨数据节点复制还是必须编程? 如果必须编程,那我该怎么做呢? 最佳答案 dfs.replication 的默认值为 3。这存在于您的 hdfs.site.xml 中
我已经设置了一个具有 1 个主节点和 2 个从节点的 redis 集群,哨兵在所有 3 个节点上运行。 在此设置之前,我的应用程序指向运行 Redis 实例的单个节点。 集群搭建完成后,我的应用应该指
所以,我正在设计一个具有多个 redis 实例的分布式系统来分解大量的流式写入,但发现很难清楚地了解事情是如何工作的。 从我读到的内容来看,正确配置的集群似乎会自动对“错误实例”上的请求进行分片和重定
我有一个关于redis集群架构的问题。 我正在设置一个 Redis 集群,并遵循基本建议:3 硕士3个奴隶 有什么方法可以在 Amazon LB、HAProxy、Nginx 等负载均衡器后面配置此集群
那么集群背后的想法是什么? 您有多台机器具有相同的数据库副本,您在其中传播读/写?这是正确的吗? 这个想法如何运作?当我进行选择查询时,集群会分析哪个服务器的读/写较少并将我的查询指向该服务器? 当您
目录 一.系统环境 二.前言 三.Kubernetes 3.1 概述 3.2 Kube
我是一名优秀的程序员,十分优秀!