安装Resource Agents的时候出现错误:configure.ac:9: error: Autoconf version 2.63 or higher is required。指的是autoconf版本号低,须要安装高版本号的。

  1. wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz
  2. tar xzf autoconf-2.68.tar.gz
  3. cd autoconf-2.68
  4. ./configure
  5. make && make install
  6. 假设原来已经装过。还须要覆盖原来的。
  7. cp   /usr/local/bin/autoconf /usr/bin/

            cp  /usr/local/bin/autoreconf /usr/bin/

Twemproxy是一个代理server,能够通过它降低MemcachedRedisserver所打开的连接数。

Twemproxy有何用途呢?它能够:

  • 通过代理的方式降低缓存server的连接数
  • 自己主动在多台缓存server间共享数据
  • 通过不同的策略与散列函数支持一致性散列
  • 通过配置的方式禁用失败的结点
  • 执行在多个实例上。client可以连接到首个可用的代理server
  • 支持请求的流式与批处理,因而可以降低来回的消耗

Redis的创建者Salvatore Sanfilippo(@antirez)撰写了一篇文章,介绍了怎样通过Twemproxy在开启Redis-cluster特性前就让Redis集群发挥作用。而在大多数情况下都不会丧失太多的性能:

Twemproxy的强大之处在于能够通过配置的方式让它禁用掉失败的结点,同一时候还能在一段时间后进行重试,抑或使用指定的键->server映射。这意味着在将Redis用作数据存储时,它能够对Redis数据集进行分片(禁用掉结点驱赶);在将Redis用作缓存时。它能够启用结点驱赶以实现简单的高可用性。

Twemproxy速度非常快。真的非常快。它差点儿与直接訪问Redis速度一样快。我敢说在最差的情况下,性能也仅仅只是才损失20%而已。

我对性能问题唯一的想法是当在多个实例上使用命令时,我认为MGET还有改进空间。

  1. 尽管能够动态移除节点,但该移除节点的数据就丢失了。
  2. redis集群动态添加节点的时候,twemproxy不会对已有数据做重分布.maillist里面作者说这个须要自己写个脚本实现
  3. 性能上的损耗

Twemproxy早在今年初由Twitter开源。它最開始支持Memcached,近期又加入了对Redis的支持。Twitter使用了大量的缓存server,每分钟会发送300k的tweet.

https://github.com/twitter/twemproxy 下载包以及对应的安装方法.

nutcracker -d -c conf/nutcracker.yml 启动nutcracker

nc 127.0.0.1 22222 | python -mjson.tool 查看状态

configure.ac:8: error: Autoconf version 2.64 or higher is required的更多相关文章

  1. configure.ac:20: error: Autoconf version 2.65 or higher is required

    安装thrift例如,下面的问题出现: configure.ac:20: error: Autoconf version 2.65 or higher is required wget http:// ...

  2. configure.ac:3: error: Autoconf version 2.68 or higher is required

    configure.ac:3: error: Autoconf version 2.68 or higher is required 参考博客:https://blog.csdn.net/pretty ...

  3. CentOS6.5升级autoconf版本 Autoconf version 2.64 or higher is required

    安装软件时提示说需要Autoconf 2.64或更高的版本 [root@BobServerStation twemproxy]# autoconf configure.ac:8: error: Aut ...

  4. CentOS6.9升级autoconf版本,解决”Autoconf version 2.64 or higher is required“错误

    安装软件时提示说需要Autoconf 2.64或更高的版本: # autoconf configure.ac:: error: Autoconf version 2.64 or higher is r ...

  5. error: Autoconf version 2.67 or higher is required

    error: Autoconf version 2.67 or higher is required 今天linux下遇到这种错误,顺便记录下来. #rpm -qf /usr/bin/autoconf ...

  6. CentOS6.5升级autoconf版本,解决”Autoconf version 2.64 or higher is required“错误

    CentOS6.5升级autoconf版本,解决”Autoconf version 2.64 or higher is required“错误 https://blog.csdn.net/pretty ...

  7. configure.ac:32: error: possibly undefined macro: AC_DEFINE

    在ubuntu 下编译snappy时,在检查依赖关系时,处理autoconf的包时,在相关依赖包都已经安装的情况下,报如下错误,死活不过. configure.ac:32: error: possib ...

  8. 解决 configure.ac:17: error: possibly undefined macro: AC_PROG_LIBTOOL

    当安装configure.ac:17: error: possibly undefined macro: AC_PROG_LIBTOOL If this token and others are le ...

  9. configure.ac:91: error: possibly undefined macro: AC_SEARCH_LIBS

    debian系统上,手动编译tmux的时候,执行./autogen.sh出现如下报错: $ ./autogen.sh configure.ac:: error: possibly undefined ...

随机推荐

  1. Spring----01. 入门知识,IoC/DI

    1.spring两个最基本概念:依赖注入DI.面向切面AOP 2.spring通过上下文Application Context装配bean,实现方式的区别是如何加载它们的配置信息, ClassPath ...

  2. Vue全局异常捕获

    之前没注意过这么个小技巧 , 可能在Vue文档里也有  暂时先记下了 方便摘要 Vue全局配置 errorHandler可以进行全局错误收集,我们可以根据这个特性对前端异常做这样的处理:业务错误直接写 ...

  3. (3) python--matplotlib

    (一)1.如何绘制散点图 import numpy as np import matplotlib.pyplot as plt # 如何绘制散点图 # 先随机生成数据 x = np.array(ran ...

  4. 阿里云服务器上使用apt-get install出现404 Not Found

    阿里云服务器上使用apt-get install出现404 Not Found 刚申请了的阿里云服务器,在其Ubuntu上用apt-get install安装软件时,会遇到 Failed to fet ...

  5. Appium+python自动化8-Appium Python API【转载】

    前言: Appium Python API全集,不知道哪个大神整理的,这里贴出来分享给大家. 1.contexts contexts(self): Returns the contexts withi ...

  6. 【转】Talend作业设计模式和最佳实践-Part I

    原文地址:https://mp.weixin.qq.com/s?__biz=MzA3OTg1Mzk4Nw==&mid=2453261363&idx=2&sn=e0f426022 ...

  7. 在Ubuntu/Centos使用 Let's Encrypt 证书部署 HTTPS的方法

    certbot地址 apache服务器(ubuntu环境): 1.获取软件包: $ sudo apt-get update $ sudo apt-get install software-proper ...

  8. 解决Windows下网络原因Composer安装失败问题的方法

    由于Composer镜像都在国外,所以直接在官网下载Windows Installer后安装很多情况下是无法成功安装的. 解决办法: 1,将php添加到系统环境变量,并开启openssl扩展. 2,点 ...

  9. Python_Tips[4] -> and 和 or 的计算原则

    and和or / and & or 对于and和or,可以连接多个值,其分别遵循原则: 全是 And: 返回第一个遇到的无效值,若全有效,返回最后一个有效值 全是 Or: 返回第一个遇到的有效 ...

  10. 分享最新申请IDP账号的过程,包含duns申请的分享(2013年6月)

    5月份接到公司要申请开发者账号的任务,就一直在各个论坛找申请的流程,但都是一些09年10年的比较旧的流程,现在都已经不适用了,好不容易找到2012年分享的流程吧,才发现申请过程中少了DUNS编码的步骤 ...