Commit Graph

28 Commits

Author SHA1 Message Date
Willy Tarreau 042effdc81 DOC: update the roadmap about priority queues
Now they've finally been merged!
2018-08-10 17:12:04 +02:00
Willy Tarreau d5961ad038 DOC: update the roadmap file with the latest changes merged in 1.8
We're making progress :-)
2017-11-24 18:00:32 +01:00
Willy Tarreau e2d4ff4579 DOC: update the roadmap file with the latest changes
A few points were already addressed. Mention that next changes are
for version 1.8 now.
2016-11-25 16:32:20 +01:00
Willy Tarreau 321815ef90 DOC: update ROADMAP file
tcp-request session is OK now.
2016-11-09 23:17:05 +01:00
Willy Tarreau 4167c88128 DOC: update ROADMAP to remove what was done in 1.6 2015-10-13 18:38:15 +02:00
Willy Tarreau 3139fec6d7 DOC: update roadmap
1.5-dev is closed, it will not get any more updates.
2014-06-19 15:55:04 +02:00
Willy Tarreau 941aac0072 DOC: update roadmap with completed tasks
Server-side unix and half-closed timeouts are now done.
2014-05-10 15:13:57 +02:00
Willy Tarreau 85ac942135 DOC: update roadmap with what was done. 2014-04-23 01:44:32 +02:00
Willy Tarreau 3c21237970 DOC: update the ROADMAP file
I already forgot to update it for dev20.
2013-12-17 00:35:27 +01:00
Willy Tarreau 5f0eee7faa DOC: update ROADMAP file
This one became a bit old, refine it with recent updates.
2013-06-17 14:51:38 +02:00
Willy Tarreau bf8f681d0c [DOC] update ROADMAP file 2011-09-10 23:40:59 +02:00
Willy Tarreau be2e1d3ef4 [DOC] update ROADMAP file 2011-03-29 01:00:12 +02:00
Willy Tarreau 1bd53be25c [DOC] update ROADMAP file 2011-03-22 14:38:00 +01:00
Willy Tarreau a1525cdf17 [DOC] update ROADMAP file 2011-03-16 06:54:36 +01:00
Willy Tarreau b549555b3b [DOC] update ROADMAP
add wish to kill existing sessions when entering maintenance mode.
2011-03-01 21:29:11 +01:00
Willy Tarreau 65ce3918af [DOC] update roadmap file 2010-11-29 07:32:02 +01:00
Willy Tarreau 0a6b1fda03 [DOC] update ROADMAP file
move what was done and add a few collected wishes.
2010-11-14 14:23:22 +01:00
Willy Tarreau 21475e3215 [DEV] open new 1.5 development branch
This new branch is based on 1.4.6, which 1.5-dev0 is 100% equivalent to.
The roadmap has been updated.
2010-05-23 08:55:53 +02:00
Willy Tarreau 1c47f85292 [MEDIUM] implemented the 'monitor-uri' keyword.
It is used to test haproxy's status with an HTTP request to which
it will reply with HTTP/1.0 200 OK.
2006-07-09 17:01:40 +02:00
Willy Tarreau baaee00406 [BIGMOVE] exploded the monolithic haproxy.c file into multiple files.
The files are now stored under :
  - include/haproxy for the generic includes
  - include/types.h for the structures needed within prototypes
  - include/proto.h for function prototypes and inline functions
  - src/*.c for the C files

Most include files are now covered by LGPL. A last move still needs
to be done to put inline functions under GPL and not LGPL.

Version has been set to 1.3.0 in the code but some control still
needs to be done before releasing.
2006-06-26 02:48:02 +02:00
willy tarreau 052c15dbe6 Merge branch 'abort-close' into merge 2006-05-21 21:43:58 +02:00
willy tarreau 481132e07c [DOC] documented the 'stats' parameter. 2006-05-21 21:43:10 +02:00
willy tarreau 12e0212448 Merge branch 'minconn' into abort-close 2006-05-21 21:11:03 +02:00
willy tarreau f76e6cad83 [MAJOR] implemented the 'minconn' server parameter for dynamic load regulation
When 'minconn' is set, the number of simultaneous sessions sent to the server
will be limited by a dynamic value depending on the global load on the
instance itself. The principle is to fix the maximal concurrency on the server
proportionnally to the instance's usage relative to its maxconn, with a minimum
fixed to <minconn>. The formula for the number of simultaneous sessions sent
to the server is then max(srv_minconn, srv_maxconn*px_conn/px_maxconn). This
helps unloading the servers when the load is very low.
2006-05-21 21:09:55 +02:00
willy tarreau e0bdd62128 [DOC] documented the 'abortonclose' option 2006-05-21 20:51:54 +02:00
willy tarreau 38d79062b3 [MINOR] allow a proxy instance to run without any server (useful for stats) 2006-05-21 14:47:13 +02:00
willy tarreau 1f431b5851 [MEDIUM] the stats dump FSM was buggy and looped on dispatch instances.
It has been rewritten and now supports an initialization state. It now also
prevents from dumping stopped(disabled) listeners and it is possible to
specify a scope with a list of proxies that are allowed to be dumped from
the one being configured ('.' meaning "this one"). The 'stats' entry can
be configured from the 'defaults' instance and it is correctly flushed
from proxies which redefine it.
2006-05-21 14:46:15 +02:00
willy tarreau 814cbc6a72 [DOC] added (and updated) the ROADMAP file 2006-05-13 13:00:29 +02:00