1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
|
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EventMQ Protocol Specification — EventMQ 0 documentation</title>
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="index" title="Index"
href="genindex.html"/>
<link rel="search" title="Search" href="search.html"/>
<link rel="top" title="EventMQ 0 documentation" href="index.html"/>
<link rel="up" title="Contributing to EventMQ" href="contributing.html"/>
<link rel="prev" title="Contributing to EventMQ" href="contributing.html"/>
<script src="_static/js/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">
<a href="index.html" class="icon icon-home"> EventMQ
</a>
<div class="version">
0.3.2
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="using.html">Using EventMQ</a></li>
<li class="toctree-l1"><a class="reference internal" href="api.html">API Documentation</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="contributing.html">Contributing to EventMQ</a><ul class="current">
<li class="toctree-l2 current"><a class="current reference internal" href="#">EventMQ Protocol Specification</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#goals">Goals</a></li>
<li class="toctree-l3"><a class="reference internal" href="#license">License</a></li>
<li class="toctree-l3"><a class="reference internal" href="#language">Language</a></li>
<li class="toctree-l3"><a class="reference internal" href="#architecture">Architecture</a><ul>
<li class="toctree-l4"><a class="reference internal" href="#topology">Topology</a></li>
<li class="toctree-l4"><a class="reference internal" href="#router-addressing">ROUTER Addressing</a></li>
<li class="toctree-l4"><a class="reference internal" href="#global-frames">Global Frames</a></li>
<li class="toctree-l4"><a class="reference internal" href="#emqp-client">eMQP / Client</a></li>
<li class="toctree-l4"><a class="reference internal" href="#emqp-scheduler">eMQP / Scheduler</a></li>
<li class="toctree-l4"><a class="reference internal" href="#emqp-worker">eMQP / Worker</a></li>
<li class="toctree-l4"><a class="reference internal" href="#emqp-publisher">eMQP / Publisher</a></li>
<li class="toctree-l4"><a class="reference internal" href="#heartbeating">Heartbeating</a></li>
<li class="toctree-l4"><a class="reference internal" href="#headers">Headers</a></li>
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="#disconnect-and-kbai">DISCONNECT and KBAI</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference external" href="https://github.com/eventmq/eventmq">Source Code</a></li>
<li class="toctree-l2"><a class="reference external" href="https://github.com/eventmq/eventmq/issues">Issues</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">EventMQ</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html">Docs</a> »</li>
<li><a href="contributing.html">Contributing to EventMQ</a> »</li>
<li>EventMQ Protocol Specification</li>
<li class="wy-breadcrumbs-aside">
<a href="_sources/protocol.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="eventmq-protocol-specification">
<h1>EventMQ Protocol Specification<a class="headerlink" href="#eventmq-protocol-specification" title="Permalink to this headline">¶</a></h1>
<p><em>The status of this document is alpha and subject to heavy change</em></p>
<div class="section" id="goals">
<h2>Goals<a class="headerlink" href="#goals" title="Permalink to this headline">¶</a></h2>
<p>The EventMQ Protocol (eMQP) defines a reliable service-oriented request-reply and pub-sub dialog between a set of clients, a broker, and a set of workers.</p>
<p>The goals are to:</p>
<blockquote>
<div><ul class="simple">
<li>Specify a protocol to follow when implementing a component to EventMQ.</li>
<li>Allow requests to be routed to workers by an abstracted service name (named queues).</li>
<li>Detect disconnected peers through heartbeating.</li>
<li>Allow for message tracing and debugging.</li>
</ul>
</div></blockquote>
</div>
<div class="section" id="license">
<h2>License<a class="headerlink" href="#license" title="Permalink to this headline">¶</a></h2>
<p>This Specification is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at your option) any later version.</p>
<p>This Specification is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.</p>
</div>
<div class="section" id="language">
<h2>Language<a class="headerlink" href="#language" title="Permalink to this headline">¶</a></h2>
<p>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in RFC 2119[[1](<a class="reference external" href="http://tools.ietf.org/html/rfc2119">http://tools.ietf.org/html/rfc2119</a>)].</p>
</div>
<div class="section" id="architecture">
<h2>Architecture<a class="headerlink" href="#architecture" title="Permalink to this headline">¶</a></h2>
<p>insert pretty picture here</p>
<div class="section" id="topology">
<h3>Topology<a class="headerlink" href="#topology" title="Permalink to this headline">¶</a></h3>
<p>eMQP connects a set of client applications (e.g. web servers), a broker, and a pool of workers. Clients connect to the broker as well as the workers.</p>
<p>‘Clients’ is defined as application issuing requests and ‘workers’ as applications that process these requests. (Workers consist of a <cite>JobManager</cite> and a pool of <cite>Worker</cite> resources where the job executes.)</p>
<p>The EventMQ broker handles a set of named queues. The broker SHOULD serve clients on a fair request and MAY deliver requests to workers on any basis, including 0MQ’s built-in round robin or least-recently used.</p>
</div>
<div class="section" id="router-addressing">
<h3>ROUTER Addressing<a class="headerlink" href="#router-addressing" title="Permalink to this headline">¶</a></h3>
<p>In the case of request-reply, the broker MUST use a ROUTER socket to accept requests from both clients and workers. The broker MAY use a seperate socket implementing a subset of eMQP, or MAY use a single socket implementing all of eMQP.</p>
<p>From the 0MQ manual[[2](<a class="reference external" href="http://api.zeromq.org/master:zmq-socket">http://api.zeromq.org/master:zmq-socket</a>)]
> When receiving messages a ROUTER socket shall prepend a message part containing the identity of the originating peer to the message before passing it to the application. When sending messages a ROUTER socket shall remove the first part of the message and use it to determine the identity of the peer the message shall be routed to.</p>
<p>This extra frame is not shown in the specifications below.</p>
</div>
<div class="section" id="global-frames">
<h3>Global Frames<a class="headerlink" href="#global-frames" title="Permalink to this headline">¶</a></h3>
<p>An <strong>ACK</strong> command consists of a 4-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="8%" />
<col width="19%" />
<col width="73%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>ACK</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_MSGID_</td>
<td>The message id of the message this ACK is acknowledging</td>
</tr>
</tbody>
</table>
<p>A <strong>REPLY</strong> frame consists of a 5-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="13%" />
<col width="31%" />
<col width="56%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>REPLY</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_MSG_</td>
<td>The reply to respond with</td>
</tr>
</tbody>
</table>
<p>A <strong>HEARTBEAT</strong> frame consists of a</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="33%" />
<col width="53%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>HEARTBEAT</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_UNIX_TS_</td>
<td>A unix timestamp</td>
</tr>
</tbody>
</table>
<p>A <strong>DISCONNECT</strong> frame consists of</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="33%" />
<col width="53%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>DISCONNECT</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
</tbody>
</table>
<p>A <strong>KBAI</strong> frame consists of</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="33%" />
<col width="53%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>KBAI</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="emqp-client">
<h3>eMQP / Client<a class="headerlink" href="#emqp-client" title="Permalink to this headline">¶</a></h3>
<p>A <strong>REQUEST</strong> command consists of a 7-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="8%" />
<col width="20%" />
<col width="72%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>REQUEST</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_QUEUE_NAME_</td>
<td>the name of the queue the request should be sent to</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>_HEADERS_</td>
<td>dictionary of headers. can be an empty set</td>
</tr>
<tr class="row-even"><td>6</td>
<td>_MSG_</td>
<td>The message to send</td>
</tr>
</tbody>
</table>
<p>A <strong>PUBLISH</strong> command consists of a 7-frame multipart messag, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="7%" />
<col width="17%" />
<col width="75%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>PUBLISH</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_TOPIC_NAME_</td>
<td>the name of the topic this message should be published across</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>_HEADERS_</td>
<td>csv list of headers</td>
</tr>
<tr class="row-even"><td>6</td>
<td>_MSG_</td>
<td>The message to send</td>
</tr>
</tbody>
</table>
<p>A <strong>SCHEDULE</strong> command consists of a 7-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="10%" />
<col width="23%" />
<col width="67%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>SCHEDULE</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_QUEUE_NAME_</td>
<td>name of queue that the job should run in</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>_HEADERS_</td>
<td>csv list of headers for this message</td>
</tr>
<tr class="row-even"><td>6</td>
<td>_MSG_</td>
<td>The message to send</td>
</tr>
</tbody>
</table>
<p>An <strong>UNSCHEDULE</strong> command consists of a 7-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="8%" />
<col width="20%" />
<col width="72%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>UNSCHEDULE</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_QUEUE_NAME_</td>
<td>ignored for this command, broadcasted to all queues</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>_HEADERS_</td>
<td>csv list of headers for this message</td>
</tr>
<tr class="row-even"><td>6</td>
<td>_MSG_</td>
<td>The message to send</td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="emqp-scheduler">
<h3>eMQP / Scheduler<a class="headerlink" href="#emqp-scheduler" title="Permalink to this headline">¶</a></h3>
<p>An <strong>INFORM</strong> command consists of a 6-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="13%" />
<col width="29%" />
<col width="58%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>INFORM</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td> </td>
<td>Queues. Unused for scheduler</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>scheduler</td>
<td>type of peer connecting</td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="emqp-worker">
<h3>eMQP / Worker<a class="headerlink" href="#emqp-worker" title="Permalink to this headline">¶</a></h3>
<p>An <strong>INFORM</strong> command consists of a 5-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="5%" />
<col width="13%" />
<col width="82%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>INFORM</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>_QUEUES_</td>
<td>csv seperated arrays containing an int and a string for weight and name. e.g. [40, ‘email’]</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>worker</td>
<td>type of peer connecting</td>
</tr>
</tbody>
</table>
<p>A <strong>READY</strong> frame consists of a 4-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="33%" />
<col width="53%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>READY</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="emqp-publisher">
<h3>eMQP / Publisher<a class="headerlink" href="#emqp-publisher" title="Permalink to this headline">¶</a></h3>
<p>A <strong>PUBLISH</strong> frame consists of a 6-frame multipart message, formatted as follows.</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="33%" />
<col width="53%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">FRAME</th>
<th class="head">Value</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>_EMPTY_</td>
<td>leave empty</td>
</tr>
<tr class="row-odd"><td>1</td>
<td>eMQP/1.0</td>
<td>Protocol version</td>
</tr>
<tr class="row-even"><td>2</td>
<td>PUBLISH</td>
<td>command</td>
</tr>
<tr class="row-odd"><td>3</td>
<td>_MSGID_</td>
<td>A unique id for the msg</td>
</tr>
<tr class="row-even"><td>4</td>
<td>TOPIC</td>
<td>A topic to publish to</td>
</tr>
<tr class="row-odd"><td>5</td>
<td>MSG</td>
<td>Message to be published</td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="heartbeating">
<h3>Heartbeating<a class="headerlink" href="#heartbeating" title="Permalink to this headline">¶</a></h3>
<blockquote>
<div><ul class="simple">
<li>HEARTBEAT commands are valid at any time after an INFORM command.</li>
<li>Any command except DISCONNECT act as a heartbeat. Peers SHOULD NOT send HEARTBEAT commands while sending other commands.</li>
<li>Worker and broker MUST send heartbeats at regular and agreed-upon intervals.</li>
<li>Scheduler and broker MUST send heartbeats at regular and agreed-upon intervals.</li>
<li>If the worker detects that the broker disconnected it SHOULD restart the conversation.</li>
<li>If the broker detects that a worker has disconnected it should stop sending it a message of any type.</li>
<li>If the scheduler detects that the broker disconnects it SHOULD restart the conversation.</li>
</ul>
</div></blockquote>
</div>
<div class="section" id="headers">
<h3>Headers<a class="headerlink" href="#headers" title="Permalink to this headline">¶</a></h3>
<p>Headers MUST be 0 to many comma seperated values inserted into the header field. If there are no headers required, an empty string MUST be sent where headers are required.</p>
<p>Below is a table which defines and describes the headers.</p>
<table border="1" class="docutils">
<colgroup>
<col width="8%" />
<col width="3%" />
<col width="3%" />
<col width="4%" />
<col width="3%" />
<col width="79%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Header</th>
<th class="head">REQUEST</th>
<th class="head">PUBLISH</th>
<th class="head">SCHEDULE</th>
<th class="head">Default</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>reply-requested</td>
<td>X</td>
<td> </td>
<td> </td>
<td>False</td>
<td>Once the job is finished, send a reply back with information from the job. If there is no information reply with a True value.</td>
</tr>
<tr class="row-odd"><td>retry-count:#</td>
<td>X</td>
<td> </td>
<td> </td>
<td>0</td>
<td>Retry a failed job this many times before accepting defeat.</td>
</tr>
<tr class="row-even"><td>timeout:#</td>
<td>X</td>
<td> </td>
<td> </td>
<td>0</td>
<td>Kill the job after X seconds, defaults to never timing out (0)</td>
</tr>
<tr class="row-odd"><td>guarantee</td>
<td>X</td>
<td> </td>
<td> </td>
<td>False</td>
<td>Ensure the job completes by letting someone else worry about a success reply.</td>
</tr>
<tr class="row-even"><td>nohaste</td>
<td> </td>
<td> </td>
<td>X</td>
<td>False</td>
<td>When scheduling a job, set this to True if you don’t want the job to run immediately as it’s scheduled. Instead, it will run for the first time when the interval has elapsed.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="section" id="disconnect-and-kbai">
<h2>DISCONNECT and KBAI<a class="headerlink" href="#disconnect-and-kbai" title="Permalink to this headline">¶</a></h2>
<dl class="docutils">
<dt>When a component receives a DISCONNECT command it:</dt>
<dd><ul class="first last simple">
<li>MUST send a KBAI command to all connected components.</li>
<li>MUST stop sending and receiving any messages</li>
<li>MUST allow any pending messages or jobs to complete.</li>
</ul>
</dd>
<dt>When a component receives a KBAI command it:</dt>
<dd><ul class="first last simple">
<li>MUST stop sending any messages to the disconnecting component.</li>
<li>SHOULD Clean up references to the disconnecting component.</li>
</ul>
</dd>
</dl>
</div>
</div>
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="contributing.html" class="btn btn-neutral" title="Contributing to EventMQ" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2017, EventMQ Contributors.
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>
</body>
</html>
|