centrifugo实时消息服务器入门(附demo)

由于公司业务需要实时获取后端状态, 又想避免前台轮循的方式, Centrifugo 正好能解决我们的问题, 借此机会进行学习。以下为一些参考文档及demo
介绍及原理
官方文档
demo
目录

  • 安装
  • 配置说明
  • 部署
  • Q&A
安装
  • 【centrifugo实时消息服务器入门(附demo)】添加源
    curl -s https://packagecloud.io/install/repositories/FZambia/centrifugo/script.deb.sh | sudo bash

  • 安装 Centrifugo
    sudo apt install centrifugo

  • 生成配置文件
    • 生成文件为: config.json, 更多配置可参考: 配置说明
      centrifugo genconfig

    • 新手可参考以下配置进行测试, 需要根据自己环境进行调整
      { "admin": true, "port": 8000, "debug": true, "presence": true, "history_size": 100, "history_lifetime": 600, "publish": true, "anonymous": true, "subscribe_to_publish": true, "join_leave": true, "history_recover": true, "log_file": "/srv/logs/centrifugo.log", "log_level": "debug", "engine": "redis", "redis_host": "127.0.0.1", "redis_port": "6379", "redis_db": "12", "redis_password": "abc123_", "secret":"453a5488-586e-4d46-a79a-920af89e0b30", "admin_password":"4ce7384d-cdcd-4d93-96db-9c911a8a53f3", "admin_secret":"ef390b3e-f03f-4c7d-8e48-5d39f03bda10", "api_key":"12a4e62c-e055-4a23-8bbd-d248740f5458", "namespaces":[ { "name":"public", "anonymous":true, "publish":true, "presence":true, "join_leave":true, "history_size":20, "history_lifetime":30, "history_recover":true } ] }

配置说明
  • 基本配置说明
    Centrifugo – real-time messaging serverUsage: [flags] [command]Available Commands: checkconfig Check configuration file genconfigGenerate simple configuration file to start with helpHelp about any command versionCentrifugo version informationFlags: -a, --address stringinterface address to listen on 服务的地址 --adminenable admin web interface 是否开启admin的管理界面 --admin_insecureuse insecure admin mode – no auth required for admin socket admin安全验证, 节点: /, 可直接访问admin管理界面, 默认为false, 登录admin需要admin_password, 反之可直接登录 --api_insecureuse insecure API mode后台推送安全验证, 节点: /api. 默认为 false, 此时访问节点需要api_key. 当设置为 true 后, 任何人都将可以访问此节点 --client_insecurestart in insecure client mode 客户端是否需要安全验证, 默认为false, 客户端必须拥有 JWT token 才能访问 -c, --config stringpath to config file (default "config.json") --debugenable debug endpoints 是否开启dubug节点, 开启后可访问 /debug/pprof/ 查看一些Centrifugo的网络状态 -e, --engine stringengine to use: memory or redis (default "memory") 消息存储引擎, 默认为内存, 部署多个实例会造成数据不同步, 因此推荐使用 redis --grpc_apienable GRPC API server 是否开启grpc api, 目前我们将使用 http_api -h, --helphelp for this command --internal_port stringcustom port for internal endpoints 开启自定义默认端口, 默认为8000, 开启额外的端口为admin访问 --log_file stringoptional log file - if not specified logs go to STDOUTlog输出文件 --log_level stringset the log level: debug, info, error, fatal or none (default "info") log级别 -n, --name stringunique node name 命名空间名称, 此空间下的属性会覆盖common部分, 但不会继承 --pid_file stringoptional path to create PID file -p, --port stringport to bind HTTP server to (default "8000")服务端口号 --prometheusenable Prometheus metrics endpoint --redis_db intRedis database (Redis engine) --redis_host stringRedis host (Redis engine) (default "127.0.0.1") --redis_master_name stringname of Redis master Sentinel monitors (Redis engine) --redis_password stringRedis auth password (Redis engine) --redis_port stringRedis port (Redis engine) (default "6379") --redis_sentinels stringcomma-separated list of Sentinel addresses (Redis engine) --redis_tlsenable Redis TLS connection --redis_tls_skip_verifydisable Redis TLS host verification --redis_url stringRedis connection URL in format redis://:password@hostname:port/db (Redis engine) --tlsenable TLS, requires an X509 certificate and a key file --tls_cert stringpath to an X509 certificate file --tls_key stringpath to an X509 certificate key

    • 注意点:
      • engine:
        • 主要功能: 在节点之间发布消息,处理PUB / SUB代理订阅,保存/检索状态和历史数据。
        • 分类:
          • Memory: 测试学习可直接使用默认的 Memory 引擎. 使用简单, 但不允许缩放节点
          • Redis: 允许将节点进行横向拓展, 各节点通过redis共享信息
      • name: 命名空间名称
        • 名字唯一, 命名格式^[-a-zA-Z0-9_]{2,}$
        • 命名空间和渠道配置没有继承, 命名空间必须单独配置参数, 不然会使用默认值
  • 渠道配置说明
    • 渠道定义: 用户可以订阅渠道, 并接受该渠道推送的所有消息
    • 渠道命名中的特别字符
      • :, 命名空间分隔符, namespace:channelName
      • $, 私有渠道前缀, 客户端必须正确的提供签名
      • #, 用户渠道分隔符, channelName#42, 代表只有用户42才能订阅此渠道, 此时需要在生成JWT token 时正确在 payload 中加入参数 "sub": "42", 多个用户可使用以下方式, channelName#42,43
    • 配置
      • publish: 是否允许客户端直接推送消息到渠道, 一般情况下由后端进行消息推送
      • subscribe_to_publish: 在推送消息之前, 是否必须要订阅渠道才能推送
      • anonymous: 匿名访问, JWT token 中sub为空, 默认为false, 当设置为true时, 将默认使用空字符串为用户id
      • presence: 是否可查看当前渠道的连接信息(连接的用户)
      • join_leave: 渠道内用户是否接收渠道内订阅/取消订阅的信息推送
      • history_recover: 是否开启消息回复, 适用于在断掉连接重连时使用, 此时 history_size 和 history_lifetime 必须配置
      • history_size: 保存多少历史消息
      • history_lifetime: 历史消息的保存时长. 单位为秒
部署
参考demo中的README
Q&A
  1. 启动centrifugo后, 建立连接报错: "attempt to call field 'replicate_commands' (a nil value)"
    • 详细细节参考issus
    • centrifugo启动后存储引擎有两种可选方案, 内存和redis. 此bug出现在使用redis引擎的时候, centrifugo 2.x 版本依赖redis版本为 3.2.x 以上, 请检查依赖, 并升级
    • Ubuntu 16.04 默认源中的 Redis 版本是3.0版本,不是最新版,要想通过 apt-get install 的方式安装最新版,首先添加 Redis 源。可执行以下步骤升级:
      • 首先安装依赖:sudo apt-get install software-properties-common -y
      • 使用如下命令添加 Redis 镜像源:sudo add-apt-repository ppa:chris-lea/redis-server -y
      • 使用如下命令安装 Redis:sudo apt-get update && sudo apt-get install redis-server -y

    推荐阅读