前边有写过一个简单pushpin 集成stream 的demo,这次测试下sse 的功能
备注: 环境依然使用的是docker-compose运行

环境准备

  • docker-compose 文件
  1. version: "3"
  2. services:
  3. pushpin:
  4. image: fanout/pushpin
  5. environment:
  6. - "target=api:8080"
  7. - "LOGNAME=nobody"
  8. volumes:
  9. - "./routes:/etc/pushpin/routes"
  10. ports:
  11. - "5561:5561"
  12. - "5562:5562"
  13. - "5563:5563"
  14. - "7999:7999"
  15. api:
  16. build: ./
  17. ports:
  18. - "8080:8080"
  19. volumes:
  20. - "./nginx_lua/:/opt/app/"
  21. - "./nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf"
  • nginx.conf
  1. worker_processes 1;
  2. user root;
  3. events {
  4. worker_connections 1024;
  5. }
  6. http {
  7. include mime.types;
  8. default_type application/octet-stream;
  9. sendfile on;
  10. lua_code_cache off;
  11. lua_need_request_body on;
  12. gzip on;
  13. resolver 127.0.0.11 ipv6=off;
  14. real_ip_header X-Forwarded-For;
  15. real_ip_recursive on;
  16. lua_package_path '/opt/app/?.lua;;';
  17. server {
  18. listen 8080;
  19. server_name app;
  20. charset utf-8;
  21. default_type text/html;
  22. location / {
  23. default_type text/plain;
  24. index index.html index.htm;
  25. }
  26. location = /favicon.ico {
  27. root /opt/app/static;
  28. }
  29. # sse 测试
  30. location /sse {
  31. content_by_lua_block {
  32. require("api/sse")()
  33. }
  34. }
  35. ## stream 测试
  36. location /userinfo {
  37. content_by_lua_block {
  38. require("api/userinfo")()
  39. }
  40. }
  41. error_page 500 502 503 504 /50x.html;
  42. location = /50x.html {
  43. root html;
  44. }
  45. }
  46. }
  • dockerfile
  1. FROM openresty/openresty:alpine-fat
  2. LABEL author="1141591465@qq.com"
  3. RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-http
  4. RUN opm get thibaultcha/lua-resty-jit-uuid

sse lua 代码

sse 代码和stream 类似,主要是content_type 以及content 内容格式
nginx_lua/api/sse.lua

  1. local json = require("cjson")
  2. local http = require("resty.http")
  3. function init()
  4. local uuid = require("resty.jit-uuid")
  5. uuid.seed()
  6. local method_name = ngx.req.get_method()
  7. if method_name == "GET" then
  8. ngx.header["Content-Type"] = "text/event-stream"
  9. ngx.header["Grip-Hold"] = "stream"
  10. ngx.header["Grip-Channel"] = "loginfo"
  11. ngx.say("is stream open")
  12. return
  13. end
  14. ngx.req.read_body()
  15. local body = ngx.req.get_body_data()
  16. if not body then
  17. if ngx.req.get_body_file() then
  18. return nil, "request body did not fit into client body buffer, consider raising 'client_body_buffer_size'"
  19. else
  20. return ""
  21. end
  22. end
  23. local mode = json.decode(body)
  24. -- event: update\ndata: hello world\n\n
  25. local body_entity = {
  26. items = {
  27. {
  28. channel = mode.channel,
  29. id = uuid(),
  30. formats = {
  31. ["http-stream"] = {
  32. content = mode.data,
  33. },
  34. -- action = "send"
  35. }
  36. }
  37. }
  38. }
  39. ngx.log(ngx.ERR, json.encode(body_entity))
  40. local requestapiurl = "http://pushpin:5561/publish/"
  41. local httpc = http.new()
  42. local res, err =
  43. httpc:request_uri(
  44. requestapiurl,
  45. {
  46. method = "POST",
  47. body = json.encode(body_entity),
  48. headers = {
  49. ["Content-Type"] = "application/json"
  50. }
  51. }
  52. )
  53. if not res then
  54. ngx.say("failed to request: ", err)
  55. return
  56. end
  57. ngx.log(ngx.ERR, res.body)
  58. ngx.say(res.body)
  59. end
  60. return init

启动&&测试

  • 启动
  1. docker-compose up -d
  1. curl -X POST \
  2. http://localhost:8080/sse \
  3. -H 'Content-Type: application/json' \
  4. -H 'Postman-Token: 0c28ab8b-1128-47cf-92b5-8cf6061dbff7' \
  5. -H 'cache-control: no-cache' \
  6. -d '{
  7. "channel":"loginfo",
  8. "data": "event: userlogin\ndata: demo login \n\n"
  9. }'

效果

说明

pushpin 的功能还是很强大的,开发起来也比较简单,对于我们需要realtime api 的需求还是很方便的

参考资料

https://pushpin.org/docs/usage/#subscribing
https://github.com/rongfengliang/pushpin-openresty-docker-compose

 
 
 
 

pushpin Server-sent events && openresty 集成试用的更多相关文章

  1. pushpin openresty 集成试用

    pushpin 是一个很不错的将restapi 转换为reailtime api 的proxy,openresty 具有很强的nginx 控制能力 可以方便的用来进行api 的开发,默认其他语言pus ...

  2. gearman openresty 集成试用

    很简单使用了一个openresty 的lua 模块 环境准备 docker-compose 文件 详细配置可以参考 https://github.com/rongfengliang/gearmango ...

  3. Play Framework, Server Sent Events and Internet Explorer

    http://www.tuicool.com/articles/7jmE7r Next week I will be presenting at Scala Days . In my talk I w ...

  4. server sent events

    server sent events server push https://html5doctor.com/server-sent-events/ https://developer.mozilla ...

  5. openresty 集成 keycloak-oauth-oidc

    keycloak 是一个比较全,而且比较方便的sso 解决方案,同时为我们提供了灵活的扩展特性 备注: 测试使用docker-compose 运行,对于keycloak 使用pg 数据库做为后端存储 ...

  6. openresty 集成 sentry 异常系统

    sentry 是一个方便的错误异常追踪系统,同时社区也提供了openresty 的lua 包,使用docker-compose 进行测试 备注: sentry 部分的配置来自官方文档 环境准备 doc ...

  7. openresty 集成lua-resty-mail +smtp2http 扩展灵活的mail 服务

    lua-resty-mail 是一个不错的openresty mail 扩展,我们可以用来进行邮件发送,支持附件功能 smtp2http 是一个smtp 服务,可以将smtp 请求数据转换为http ...

  8. SQL Server Extended Events 进阶 2:使用UI创建基本的事件会话

    第一阶中我们描述了如何在Profiler中自定义一个Trace,并且让它运行在服务器端来创建一个Trace文件.然后我们通过Jonathan Kehayias的 sp_SQLskills_Conver ...

  9. SQL Server Extended Events 进阶 1:从SQL Trace 到Extended Events

    http://www.sqlservercentral.com/articles/Stairway+Series/134869/ SQL server 2008 中引入了Extended Events ...

随机推荐

  1. Java 整体测试重点题 错题积累

    重点题    错题积累 1: 解析: %d:用来设置输出日志的日期和时间 %m:用来输出代码中指定的消息 %n:用来输出一个回车换行符 %l:用来输出日志事件的发生位置 %p:用来输出优先级 %f:用 ...

  2. Lookaside

    频繁申请和回收内存,会导致在内存上产生大量的内存碎片,从而导致最终无法申请内存.DDK提供了Lookaside结构来解决这个问题.可以将Lookaside结构想象成一个内存容器.在初始的时候,它先向W ...

  3. DevExpress ASP.NET Bootstrap Controls v18.2新功能详解(二)

    行业领先的.NET界面控件2018年第二次重大更新——DevExpress v18.2日前正式发布,本站将以连载的形式为大家介绍新版本新功能.本文将介绍了DevExpress ASP.NET Boot ...

  4. 2018ICPC青岛 E - Plants vs. Zombies (二分+模拟)

    ZOJ - 4062 题意:有n个植物排成一排,按顺序植物的编号是1-n,每个植物都有一个生长速率,有一个机器人,机器人可以走m步,每走一步,这个机器人就会浇一次水,浇一次水那个植物就会长 自身的生长 ...

  5. 了解下webpack的几个命令

    [ webpack3.0.0刚刚出来  所以文章是跟着低版本 教程 操作熟悉  结果好多对不上喔] 六:了解下webpack的几个命令 webpack         // 最基本的启动webpack ...

  6. YLZ开发后端外网编写

    如何取得前端的值并做处理 // 调用ESB来获取Ajaxpagerespon获得审核记录 @RequestMapping(value = "/queryBydwId", metho ...

  7. Oracle 定时器

    我的代码 declare job number; begin dbms_job.submit( JOB=>job, what=>'addBytime;',// 这里要写分号,不然容易出错. ...

  8. L314 单音节词读音规则(二)-元音字母发音规则

    1 单个元音发音尽量拖音一下(2S),发音会饱满一些. 2开音节: 辅音(辅组)(没有)+元音+辅音+e 的单词其中:元音发字母本身音,辅音字母不为r , 字母e不发音. 相对开音节:第一个元音都发字 ...

  9. Python 类的约束

    # 项目经理 class Base: # 对子类进行了约束. 必须重写该方法 # 以后上班了. 拿到公司代码之后. 发现了notImplementedError 继承他 直接重写他 def login ...

  10. HDU 3130 17多校7 Kolakoski(思维简单)

    Problem Description This is Kolakosiki sequence: 1,2,2,1,1,2,1,2,2,1,2,2,1,1,2,1,1,2,2,1……. This seq ...