diff options
author | Anders Svensson <[email protected]> | 2015-01-23 20:02:25 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-02-20 01:51:34 +0100 |
commit | 4b691d8d8a5eae2b0b34e1e0ec00fa5116384d69 (patch) | |
tree | a4dfa83aa227291c76922417f10379c5ca299bcc /lib/diameter/src/base/diameter_stats.erl | |
parent | af87b1c3d4897840d8247589a88d3611106ecedc (diff) | |
download | otp-4b691d8d8a5eae2b0b34e1e0ec00fa5116384d69.tar.gz otp-4b691d8d8a5eae2b0b34e1e0ec00fa5116384d69.tar.bz2 otp-4b691d8d8a5eae2b0b34e1e0ec00fa5116384d69.zip |
Add transport_opt() pool_size
Transport processes are started by diameter one at a time. In the
listening case, a transport process accepts a connection, tells the
peer_fsm process, which tells its watchdog process, which tells its
service process, which then starts a new watchdog, which starts a new
peer_fsm, which starts a new transport process, which (finally) goes
about accepting another connection. In other words, not particularly
aggressive in accepting new connections. This behaviour doesn't do
particularly well with a large number of concurrent connections: with
TCP and 250 connecting peers we see connections being refused.
This commit adds the possibilty of configuring a pool of accepting
processes, by way of a new transport option, pool_size. Instead of
diameter:add_transport/2 starting just a single process, it now starts
the configured number, so that instead of a single process waiting for a
connection there's now a pool.
The option is even available for connecting processes, which provides an
alternate to adding multiple transports when multiple connections to the
same peer are required. In practice this also means configuring
{restrict_connections, false}: this is not implicit.
For backwards compatibility, the form of
diameter:service_info(_,transport) differs in the connecting case,
depending on whether or not pool_size is configured.
Note that transport processes for the same transport_ref() can be
started concurrently when pool_size > 1. This places additional
requirements on diameter_{tcp,sctp}, that will be dealt with in a
subsequent commit.
Diffstat (limited to 'lib/diameter/src/base/diameter_stats.erl')
0 files changed, 0 insertions, 0 deletions