This repository has been archived by the owner on Sep 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathChangeLog
439 lines (220 loc) · 9.13 KB
/
ChangeLog
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
2014-02-28 Tatsuhiko Kubo <[email protected]>
* optimize counting END+CRLF in response of get
* 0.8.9 released
2013-10-02 Tatsuhiko Kubo <[email protected]>
* set socket timeout for health-check
* 0.8.8 released
2013-09-09 Tatsuhiko Kubo <[email protected]>
* fix bug(single graceful restart sometimes fails)
* 0.8.7 released
2013-09-03 Tatsuhiko Kubo <[email protected]>
* remove request body of set request in slowlog(Some request could includes invalid UTF-8 sequence.)
* 0.8.6 released
2013-08-15 Tatsuhiko Kubo <[email protected]>
* make the socket of health check persistent
* add 'request_bufsize' and 'response_bufsize' to log
* add parameter 'try_max'
* 0.8.5 released
2013-07-22 Tatsuhiko Kubo <[email protected]>
* connpool_use_max is deprecated
* 0.8.4 released
2013-06-26 Tatsuhiko Kubo <[email protected]>
* add feature(worker watcher with SIGCHLD)
* 0.8.3 released
2013-06-07 Tatsuhiko Kubo <[email protected]>
* fix bug(access to already possible freed memory region when graceful-restarting)
* 0.8.2 released
2013-05-30 Tatsuhiko Kubo <[email protected]>
* 0.8.1 released
2013-05-24 Tatsuhiko Kubo <[email protected]>
* new function: on-the-fly-update, add-environment online
* neoctl's reload is obsolete
* make neoagent ignoring SIGALRM
* use sigwait instead of sigaction and signal handler
* fix some warnings
* 0.8.1~rc1 released
2013-05-20 Tatsuhiko Kubo <[email protected]>
* 0.8.0 released
2013-05-15 Tatsuhiko Kubo <[email protected]>
* distingish restart and graceful clearly
* fix bug(neoagent losts remaing contexts when executing graceful restart)
* 0.8.0~rc2 released
2013-05-13 Tatsuhiko Kubo <[email protected]>
* fix bug(skip table size is incorrect)
* add graceful restart implementation
* add parameter 'logpath' and 'log_access_mask'
* 0.8.0~rc1 released
2013-05-07 Tatsuhiko Kubo <[email protected]>
* fix problem(Each process name becomes strange when there are too many environments)
* 0.7.5 released
2013-05-01 Tatsuhiko Kubo <[email protected]>
* make creating connpool delayed
* use pkg-config for searching libev and json-c path
* include man file by default
* remove function(clear parameters with SIGUSR1)
* 0.7.4 released
2013-04-17 Tatsuhiko Kubo <[email protected]>
* fix problem(error handling leak)
* 0.7.3 released
2013-04-16 Tatsuhiko Kubo <[email protected]>
* decrease source files(move *.h -> defines.h)
* delay helth check request randomly
* fix SEGV problem(If there are no arguments, neoagent occurs SEGV)
* fix bug(somtimes infinite-loop occurs)
* 0.7.2 released
2013-04-15 Tatsuhiko Kubo <[email protected]>
* remove unneed parameters
* fix bug(neoagent could not control processes when there are more than 3 environments)
* 0.7.1 released
2013-04-10 Tatsuhiko Kubo <[email protected]>
* support multi environments
* fix uninitialized bug(env->slow_query_fp is not initialized)
* 0.7.0 released
2013-04-01 Tatsuhiko Kubo <[email protected]>
* add parameter 'slow_query_log_access_mask'
* 0.6.4 released
2013-02-21 Tatsuhiko Kubo <[email protected]>
* fix #20 (connpool may switch from active to backup between na_connpool_select and na_connpool_assign). Thanks for edvakf
* fix protocol problem(when set request is send with telnet neoagent cannot proxy)
* fix #19 (build error in Mac OS X). Thanks for walf443
* 0.6.3 released
2013-01-22 Mark Laws<[email protected]>, Tatsuhiko Kubo <[email protected]>
* include time, type, host in slow log
* 0.6.2 released
2013-01-21 Mark Laws<[email protected]>, Tatsuhiko Kubo <[email protected]>
* slow query log can be output as plain text or json
* write slow_query_log to file instead of stderr
* print slow_query_sec and slow_query_log_path in neostat
* 0.6.1 released
2012-12-11 Mark Laws<[email protected]>, Tatsuhiko Kubo <[email protected]>
* add function(slow query logging)
* 0.6.0 released
2012-10-02 Tatsuhiko Kubo <[email protected]>
* support reconfiguration with SIGUSR2
* 0.5.5 released
2012-09-13 Tatsuhiko Kubo <[email protected]>
* fix race condition problem when switching server
* 0.5.4 released
2012-09-03 Tatsuhiko Kubo <[email protected]>
* add dependency of debian package(python-argparse)
* fix race condition bug(Each entry of ClientPool is accessed by multi event workers possibly)
* 0.5.3 released
2012-08-22 Tatsuhiko Kubo <[email protected]>
* some refactoring
* monitoring if workers are active
* fix problem(event worker threads go into infinite-loop when continuous connections are lots)
* 0.5.2 released
2012-08-12 Tatsuhiko Kubo <[email protected]>
* fix problem(CPU is busy every time)
* modify Copyright
* 0.5.1 released
2012-08-11 Tatsuhiko Kubo <[email protected]>
* make neoagent's event multi-threaded
* add neostat completion
* 0.5.0 released
2012-08-04 Tatsuhiko Kubo <[email protected]>
* interlock backlog with env->conn_max
* 0.4.9 released
2012-07-26 Tatsuhiko Kubo <[email protected]>
* add option '-o' to neostat
* 0.4.8 released
2012-07-25 Tatsuhiko Kubo <[email protected]>
* fix invalid read access in na_bm_search
* 0.4.7 released
2012-05-28 Tatsuhiko Kubo <[email protected]>
* add monitoring entry '(request|response)_bufsize_current_max'
* 0.4.6 released
2012-05-11 Tatsuhiko Kubo <[email protected]>
* add paramenter 'client_pool_max'
* support TCMalloc
* 0.4.5 released
2012-04-23 Tatsuhiko Kubo <[email protected]>, Mark Laws
* change default option for compilation([-g0 -O3] -> [-g -O2])
* reduce backlog(1024 -> 512)
* fix bug(crashing during backup->primary switch under load)
* 0.4.4 released
2012-03-18 Tatsuhiko Kubo <[email protected]>
* fix problem(when recovery target_server connect with invalid pool)
* reconnect when connpool is used used_count > connpool_use_max
* improve health check(# 12):
* set non-blocking client descriptor
* remove 'fsport' in stats
* add parameter 'event_model'
* 0.4.3 released
2012-03-07 Tatsuhiko Kubo <[email protected]>
* refuse accept when switing server
* support unix domain socket for statictics server
* 0.4.2 released
2012-03-03 Tatsuhiko Kubo <[email protected]>
* when backup_server is not defined neoagent use only target_server
* improve performance of memory allocation
* 0.4.1 released
2012-02-22 Tatsuhiko Kubo <[email protected]>
* make buffer extensible
* divide buffer size from `bufsize` to `request_bufsize` and `response_bufsize`
* support decr command
* 0.4.0 released
2012-02-19 Tatsuhiko Kubo <[email protected]>
* select connection from connpool randomly at first
* error output includes current datetime
* add `start_time` and `up_time` in neostat
* reduce number of threads(3 -> 2)
* 0.3.2 released
2012-02-08 Tatsuhiko Kubo <[email protected]>
* add signal handler for clearing environment variables
* if error_count over error_count_max, init error_count
* 0.3.1 released
2012-02-07 Tatsuhiko Kubo <[email protected]>
* insert error count function when errro occured
* add stat entry 'current_conn_max', 'host', 'port'
* fix(fail to resolve name)
* 0.3.0 released
2012-01-31 Tatsuhiko Kubo <[email protected]>
* fix bug(refer to uninitialized pointer)
* fix problem of breaking socket in connection pool(re-create a socket whe it breaks)
* 0.2.4 released
2012-01-30 Tatsuhiko Kubo <[email protected]>
* remove unused member and malloc code
* 0.2.3 released
2012-01-25 Tatsuhiko Kubo <[email protected]>
* fix bug(set request sometime gets lost)
* 0.2.2 released
2012-01-24 Tatsuhiko Kubo <[email protected]>
* fix bug(bm_search rarely goes into infinite-loop)
* output statictics with JSON
* add neostat(stat command for neoagent)
* include name and version in statictics
* 0.2.1 released
2012-01-22 Tatsuhiko Kubo <[email protected]>
* fix invalid read access on Boyer-Moore Search
* divide event loop into main loop and support loop
* rename function prefix 'neoagent_' 'na_'
* rewrite event.c from scratch
* improve stability
* fix bug(long request sometimes drop out)
* assign connection from connpool directional-randomly
* add neoagent command completion with zsh
* fix memory leak(forgot to release json objects for configuration)
* fix bug(output command request to stdout when switching server)
* 0.2.0 released
2011-09-06 Tatsuhiko Kubo <[email protected]>
* add event switch count and max
* unuse keep-alive when connection pool is full
* fix bug(when too long command string, get command fail)
* support command 'quit'
* output file-name and line-number when error occurred
* 0.1.3 released
2011-08-30 Tatsuhiko Kubo <[email protected]>
* fixes bug(connection pool is unused fully)
* add parameter 'bufsize'
* 0.1.2 released
2011-08-29 Tatsuhiko Kubo <[email protected]>
* change default port
* add paramenter 'conn_max' and 'is_connpool_only'
* add statictics server function
* change directory layout
* use sphinxtogithub
* check whether standard header files and some funcion exist
* 0.1.1 released
2011-08-24 Tatsuhiko Kubo <[email protected]>
* 0.1.0 released