zmq 学习笔记
0. PUB/SUB, XPUB/XSUB
- filtering happens at publisher sides when sockets are using a connected protocol(tcp or ipc or inproc)
- there are meta-info exchange between SUB and PUB, but on API level,only allow message to flow from PUB to SUB.
- SUB socket can not send message on API level, but actually when user adds filter, there are meta information sent from subscriber to publisher, and XPUB can receive that(PUB cannot).
- when XPUB receives meta info, this info must be forwarded to the original PUB server, this is done by XSUB, as following model illustrated: PUB->XSUB<-->XPUB->SUB. since SUB can not send, so it is not capable of serving as proxy.
1. REQ/REP works in a strict request-reply mode
when server receives a request, it has to reply it until it could issue another read.
- one client socket can connected to several servers at the same time, send() is distributed evenly among all connections:
- c1 connect() to s1.
- c1 connect() to s2.
- c1 send() will write to s1.
- c1 recv() from s1.
- c1 send() again, this time message is sent to s2.
- if there are multiple clients connected to the same REP server, and multiple clients send request to server at the same time, then server will have to handle each of these request one by one.
- A connects to C.
- B connects to C.
- A sends request r1 to C.
- B sends request r2 to C.
- C accepts r1.
- C processes r1, and at the same time, C can not read any other requestes before replying to r1.
- C replys to r1.
- C accepts r2 and does some processing and replys to it.
- by doing so a single REP socket can handle multiple connected REQ sockets(posix socket api cannot do that, it requires one socket per connection at server side.)
2. identity/envelop of message
- why do we need ROUTER/DEALER sockets?
- use it to work as proxy.
- REQ/REP works in a strict request/reply mode, and this is not scalable when many clients are connected to a single server(it has to round-robin simultaneous requests: recv message, forward message, wait for replying message, forward reply message and then handle next recv). In contrast, ROUTER is not restricted to this model, and it can perform several recv() in a row before reply to any of them.
- r1 sends to server s0.
- r2 sends to server s0.
- s0 forwards r1 to some REP server s1.
- s0 forwards r2 to some REP server s2.(REP socket doesn't allow this, since r1 is not replied yet)
- s0 receives reply from s1 and forward it to r1.
- s0 receives reply from s2 and forward it to r2.
- every ROUTER socket need to preppend an unique id to the message before handing that message to the application.
- this id can be set by incoming socket by calling zmq.setsockopt(zmq.IDENTITY, $id) in client side.
- or if not set by incoming socket, ROUTER socket has to choose one for it.
- if there are id clash, the incoming connection will be turned down(connection refused).
- for every REQ socket or REP socket when receiving a message, it will strip ALL the prepended id(and holds it internally), and then hands the message to caller.
- socket will keep the id(s) it stripped from the massage for further use.
- when socket need to send message back, it will preppend thoese id(s) it holds to the message before sending it out.
- DEALER sends message to all connected clients in a round-robin way and messages received are fair-queued.[5]
- no extra info will be added to the message to send.
- no extra info will be stripped from the received message.
- DEALER is completely agnostic to all connected clients.
- a simple example: c1 ---> proxy1(ROUTER/DEALER) ---> proxy2(ROUTER/DEALER) ---> s1
- c1 sends message: delimiter|msg
- proxy1 ROUTER socket recv message: delimiter|msg, and preppend an id to the message: id1|delimiter|msg.
- proxy1 sends id1|delimiter|msg to proxy2 throught DEALER socket.
- proxy2 ROUTER socket recv message: id1|delimiter|msg, and preppend an id to the massage, id2|id1|delimiter|msg.
- proxy2 sends id2|id1|delimiter|msg to s1 throught its DEALER socket.
- s1 recv message: id2|id1|delimiter|msg, it will strip all ids and hands "msg" to caller.
==> then s1 trys to reply message:
- before message is sent out, it will preppend the ids it get to the message.
- every ROUTER will strip the first id off the package and use it to identified which connection to send the message when it try to send the message.
- that is, proxy2 receives id2|id1|delimiter|rep_msg, and sends out id1|delimiter|rep_msg.
- proxy1 receives id1|delimiter|rep_msg and works the same way and sends out delimiter|rep_msg.
- c1 recv delimiter|rep_msg, and strip the delimiter before handing it to caller.
- router to router is possible, but it is tricky to work, eg, router1 connects to router2:
- r1 connected to r2 successfully.
- at this point, r1 doesn't know the id of r2, so r1 could not send message to r2(recall that, every router need to strip an id from the message to identify the connection to send the message)
- r2 can send message to r1, if and only if r2 could SOMEHOW get to know the id of r1 before hand.
- the only way to accomplish step 3 is let r1 hardcodes its identity, then r2 could use this hardcoded id to send message back to r1.
- r1 acts as server, it will bind to local port, thus r1 sets its identity won't help.
- the only way for r1 to get the id of r2 is receiving message from r2,(ROUTER announces the identity of a connection only when receiving message from peer.[6])
3. reliability at client side read
- server side uses poll to sit on the socket(or it could issue blocking read, timeout read), no exception will throw normally.
- client should perform a timeout read, and when timeout occurs, retry several times, client should abort the connection if read still fails in the end. instead, start a new connection to server.
- connection is cheap in this regard, and users are encouraged to kill bad connection and start a new one.[4][7]
Reference:
- http://api.zeromq.org/
- http://zguide.zeromq.org/
- http://pyzmq.readthedocs.io/en/latest/api/
- https://news.ycombinator.com/item?id=4161073
- http://lucumr.pocoo.org/2012/6/26/disconnects-are-good-for-you/
- http://zguide.zeromq.org/page:all#Recap-of-Request-Reply-Sockets
- http://zguide.zeromq.org/page:all#Identities-and-Addresses
- http://zguide.zeromq.org/page:all#Client-side-Reliability-Lazy-Pirate-Pattern
zmq 学习笔记的更多相关文章
- zmq学习笔记
1 zmq_socket(3) Manual Page 1.1 一个socket可连接多个对端socket: 通过使用多个zmq_connect() 1.2 一个socket可绑定到多个地址上接受连接 ...
- js学习笔记:webpack基础入门(一)
之前听说过webpack,今天想正式的接触一下,先跟着webpack的官方用户指南走: 在这里有: 如何安装webpack 如何使用webpack 如何使用loader 如何使用webpack的开发者 ...
- PHP-自定义模板-学习笔记
1. 开始 这几天,看了李炎恢老师的<PHP第二季度视频>中的“章节7:创建TPL自定义模板”,做一个学习笔记,通过绘制架构图.UML类图和思维导图,来对加深理解. 2. 整体架构图 ...
- PHP-会员登录与注册例子解析-学习笔记
1.开始 最近开始学习李炎恢老师的<PHP第二季度视频>中的“章节5:使用OOP注册会员”,做一个学习笔记,通过绘制基本页面流程和UML类图,来对加深理解. 2.基本页面流程 3.通过UM ...
- 2014年暑假c#学习笔记目录
2014年暑假c#学习笔记 一.C#编程基础 1. c#编程基础之枚举 2. c#编程基础之函数可变参数 3. c#编程基础之字符串基础 4. c#编程基础之字符串函数 5.c#编程基础之ref.ou ...
- JAVA GUI编程学习笔记目录
2014年暑假JAVA GUI编程学习笔记目录 1.JAVA之GUI编程概述 2.JAVA之GUI编程布局 3.JAVA之GUI编程Frame窗口 4.JAVA之GUI编程事件监听机制 5.JAVA之 ...
- seaJs学习笔记2 – seaJs组建库的使用
原文地址:seaJs学习笔记2 – seaJs组建库的使用 我觉得学习新东西并不是会使用它就够了的,会使用仅仅代表你看懂了,理解了,二不代表你深入了,彻悟了它的精髓. 所以不断的学习将是源源不断. 最 ...
- CSS学习笔记
CSS学习笔记 2016年12月15日整理 CSS基础 Chapter1 在console输入escape("宋体") ENTER 就会出现unicode编码 显示"%u ...
- HTML学习笔记
HTML学习笔记 2016年12月15日整理 Chapter1 URL(scheme://host.domain:port/path/filename) scheme: 定义因特网服务的类型,常见的为 ...
随机推荐
- javax.persistence.PersistenceException: No Persistence provider for EntityManager named ...
控制台下输出信息 原因:persistence.xml必须放在src下META-INF里面. 若误放在其他路径,就会迷路.
- paip.c3p0 数据库连接池 NullPointerException 的解决...
paip.c3p0 数据库连接池 NullPointerException 的解决... 程序ide里面运行正常..外面bat运行错误.. 作者Attilax 艾龙, EMAIL:14665198 ...
- javascript设计模式与开发实践阅读笔记(9)——命令模式
命令模式:有时候需要向某些对象发送请求,但是并不知道请求的接收者是谁,也不知道被请求的操作是什么,此时希望用一种松耦合的方式来设计软件,使得请求发送者和请求接收者能够消除彼此之间的耦合关系. 说法很复 ...
- 详解Bootstrap面板组件
面板组件主要作用是用来处理一些其他组件无法完成的功能,在不同的版本中具有不同的源码: LESS:panels.less SASS:_panels.scss 基础面板非常简单,就是一个div容器中运用了 ...
- 微软BI 之SSIS 系列 - 通过设置 CheckPoints 检查点来增强 SSIS Package 流程的重用性
开篇介绍 通常一个 ETL Package 是由多个控制流和数据流共同组成,有的时候 ETL 的步骤可能会比较多,整个流程执行下来的时间可能比较长.假设在 ETL Package 中包含5个Task, ...
- Alcatraz的安装和使用
一.简单说明 Alcatraz 是一款 Xcode的插件管理工具,可以用来管理XCode的 插件.模版以及颜色配置的工具. 二.如何安装 1.github地址:https://github.com/a ...
- html页面禁止自动填充浏览器记住的密码
现在的浏览器功能越来越强大,比如Chrome浏览器,在一个系统login的时候我们一般会记住密码,那么在整个系统中,浏览器一旦遇到 type="password"的控件,就会把密码 ...
- EMW 性能优化二之---并发配置
EMW 性能优化二之---并发配置 在前一个日志中写到交货的异步更新,对于RFUI RF的前台操作会提升效率,异步更新不用等待更新状态的返回,启用更新队列的方式执行(SM13). 下面再补全性能相关的 ...
- 上海邮政EMS海关清关(个人) 流程
最近雾埋越来越严重,上个星期买了一个tacx骑行台,不料运气欠佳,被税了.那就去乖乖缴税吧. 拿着EMS的通知单(没有通知单就不要去了),到通知单指定的地址(上海有两处,我的是武定路458号)清关提货 ...
- win8 中使用第三方无线网卡出现无线连接受限解决办法
无线路由 无线网络模式基本设置 模式改为 11bg mixed , 然后在 win8 的设备管理器中找到无线路由 不知道 win8 有些地方兼容性做的不是很到位,我的 xp不做任何配置可以正常使用.