summaryrefslogtreecommitdiff
path: root/doc/EXTTODO
blob: 991f10879300e3d9f2863fea52bffd85981c9f74 (plain)
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
EXTTODO by Claudio Jeker <jeker@n-r-g.com> and 
Andre Oppermann <opi@nrg4u.com>
(c) 1998,1999,2000,2001,2002 Internet Business Solutions Ltd.

The EXTTODO patch is a part of the qmail-ldap patch.
This patches for qmail come with NO WARRANTY.

These patches are under the BSD license.

RELEASE: 5. Jan. 2003

EXTTODO:
======================

TOC:
 WHAT DOES IT DO
 INSTALL
 CONFIG FILES
 SETUP
 BIG PICTURE

NEWS:
 
 This is the first release of the EXTTODO patch.

================================================================================

WHAT DOES IT DO

 The exttodo patch addresses a problem known as the silly qmail (queue)
 problem. This problem is found only on system with high injection rates.

 qmail with a big local and remote concurrency could deliver a tremendous 
 amount of messages but normally this can not be achieved because qmail-send
 becomes a bottleneck on those high volumes servers.
 qmail-send preprocesses all new messages before distributing them for local
 or remote delivering. In one run qmail-send does one todo run but has the 
 ability to close multiple jobs. Because of this layout qmail-send can not 
 feed all the new available (local/remote) delivery slots and therefor it is 
 not possible to achieve the maximum throughput.
 This would be a minor problem if one qmail-send run could be done in extreme
 short time but because of many file system calls (fsync and (un)link) a todo
 run is expensive and throttles the throughput.

 The exttodo patch tries to solve the problem by moving the todo routine into 
 an external program. This reduces the run time in qmail-send.

 exttodo adds a new program to qmail called qmail-todo. qmail-todo prepares
 incoming messages for local and remote delivering (by creating info/<messid>
 local/<messid> and remote/<messid> and removing todo/<messid>). See also
 INTERNALS. As next qmail-todo transmits the <messid> to qmail-send which will
 add this message into the priority queue which schedules the message for 
 delivery. 

INSTALL

 To enable the exttodo patch you need to define EXTERNAL_TODO while compiling
 qmail(-ldap) this can be done with the -D flag of cc (e.g. cc -DEXTERNAL_TODO).

 NOTE: the exttodo patch can also be used on qmail systems without the 
 qmail-ldap patch.
 
================================================================================

CONFIG FILES

 No additional control files are used or needed.

================================================================================

SETUP

 qmail-todo will be started by qmail-start and therefor no additional setup
 is needed.

 To verify that exttodo is running just check if qmail-todo is running.

================================================================================

BIG PICTURE

               +-------+   +-------+
               | clean |   | clean |
               +--0-1--+   +--0-1--+       +-----------+
         trigger  ^ |         ^ |        +->0,1 lspawn |
            |     | v         | v       /  +-----------+
 +-------+  v  +--2-3--+   +--5-6--+   /
 |       |  |  |       0<--7     1,2<-+
 | queue |--+--| todo  |   | send  |
 |       |  |  |       1-->8     3,4<-+
 +-------+     +-------+   +---0---+   \
                               |        \  +-----------+
                               v         +->0,1 rspwan |
                           +---0---+       +-----------+
                           | logger|
                           +-------+

Communication between qmail-send and qmail-todo

todo -> send:
   D[LRB]<mesgid>\0
          Start delivery for new message with id <messid>.
          the character L, R or B defines the type
          of delivery, local, remote or both respectively.
   L<string>\0
          Dump string to the logger without adding additional \n or similar.
send -> todo:
   H      Got a SIGHUP reread ~/control/locals and ~/control/virtualdomains
   X      Quit ASAP.

qmail-todo sends "\0" terminated messages whereas qmail-send just send one
character to qmail-todo.


EXTTODO by Claudio Jeker <jeker@n-r-g.com> and 
Andre Oppermann <opi@nrg4u.com>
(c) 1998,1999,2000,2001,2002 Internet Business Solutions Ltd.

The EXTTODO patch is a part of the qmail-ldap patch.
This patches for qmail come with NO WARRANTY.

These patches are under the BSD license.

RELEASE: 5. Jan. 2003

EXTTODO:
======================

TOC:
 WHAT DOES IT DO
 INSTALL
 CONFIG FILES
 SETUP
 BIG PICTURE

NEWS:
 
 This is the first release of the EXTTODO patch.

================================================================================

WHAT DOES IT DO

 The exttodo patch addresses a problem known as the silly qmail (queue)
 problem. This problem is found only on system with high injection rates.

 qmail with a big local and remote concurrency could deliver a tremendous 
 amount of messages but normally this can not be achieved because qmail-send
 becomes a bottleneck on those high volumes servers.
 qmail-send preprocesses all new messages before distributing them for local
 or remote delivering. In one run qmail-send does one todo run but has the 
 ability to close multiple jobs. Because of this layout qmail-send can not 
 feed all the new available (local/remote) delivery slots and therefor it is 
 not possible to achieve the maximum throughput.
 This would be a minor problem if one qmail-send run could be done in extreme
 short time but because of many file system calls (fsync and (un)link) a todo
 run is expensive and throttles the throughput.

 The exttodo patch tries to solve the problem by moving the todo routine into 
 an external program. This reduces the run time in qmail-send.

 exttodo adds a new program to qmail called qmail-todo. qmail-todo prepares
 incoming messages for local and remote delivering (by creating info/<messid>
 local/<messid> and remote/<messid> and removing todo/<messid>). See also
 INTERNALS. As next qmail-todo transmits the <messid> to qmail-send which will
 add this message into the priority queue which schedules the message for 
 delivery. 

INSTALL

 To enable the exttodo patch you need to define EXTERNAL_TODO while compiling
 qmail(-ldap) this can be done with the -D flag of cc (e.g. cc -DEXTERNAL_TODO).

 NOTE: the exttodo patch can also be used on qmail systems without the 
 qmail-ldap patch.
 
================================================================================

CONFIG FILES

 No additional control files are used or needed.

================================================================================

SETUP

 qmail-todo will be started by qmail-start and therefor no additional setup
 is needed.

 To verify that exttodo is running just check if qmail-todo is running.

================================================================================

BIG PICTURE

               +-------+   +-------+
               | clean |   | clean |
               +--0-1--+   +--0-1--+       +-----------+
         trigger  ^ |         ^ |        +->0,1 lspawn |
            |     | v         | v       /  +-----------+
 +-------+  v  +--2-3--+   +--5-6--+   /
 |       |  |  |       0<--7     1,2<-+
 | queue |--+--| todo  |   | send  |
 |       |  |  |       1-->8     3,4<-+
 +-------+     +-------+   +---0---+   \
                               |        \  +-----------+
                               v         +->0,1 rspwan |
                           +---0---+       +-----------+
                           | logger|
                           +-------+

Communication between qmail-send and qmail-todo

todo -> send:
   D[LRB]<mesgid>\0
          Start delivery for new message with id <messid>.
          the character L, R or B defines the type
          of delivery, local, remote or both respectively.
   L<string>\0
          Dump string to the logger without adding additional \n or similar.
send -> todo:
   H      Got a SIGHUP reread ~/control/locals and ~/control/virtualdomains
   X      Quit ASAP.

qmail-todo sends "\0" terminated messages whereas qmail-send just send one
character to qmail-todo.