throttlethrottle
Throttle service to control concurrency to other services
Home > Books > NetKernel API and Services Reference > Accessor Listing > Utility and System Accessors > throttle

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:ext:sys

The throttle accessor is exported by the urn:org:ten60:netkernel:ext:sys module. Import this module to gain access to the accessor.

Syntax

URI
active:throttle

ArgumentRulesDescription
idMandatory the throttle identifier URI
configurationOptional configuration parameters of throttle
uriOptional URI of service for throttle to invoke
other1Optional any other arguments to pass through to service

Example Usage

DPML

<instr>
  <type>throttle</type>
  <id>throttle:my_throttle</id>
  <configuration>myConfig.xml</configuration>
  <uri>ffcpl:/myservice</uri>
  <param>var:param</param>
  <target>this:response</target>
</instr>

NetKernel Foundation API

// attempt to issue 100 concurrent requests to myservice
for (int i=0; i<100; i++)
    {
    req=context.createSubRequest("active:throttle");
    req.addArgument("id","throttle:my_throttle");
    req.addArgument("uri","ffcpl:/myservice");
    context.issueAsyncSubRequest(req);
    }

Purpose

The throttle accessor can act as a wrapper around other services and will limit the number of concurrent requests those services will receive simultaneously. The throttle will queue requests when the number of concurrent requests exceeds the limit specified by the concurrency parameter. When the service finishes processing a request, the throttle will send a queued request to the service. If the configurable queue size limit is exceeded then an "Throttle Overload" exception is thrown and the service will never be invoked for that request.

Throttle ID

A globally unique throttle ID must be assigned to each unique instance of a logical throttle. If multiple clients use the same throttle id then their requests will share the same throttle even if their requests are targeted at different services - this may sometimes be desirable.

Configuration

The following configuration parameters must be supplied to the throttle in the form of an XML document:

<throttle>
  <concurrency>4</concurrency>
  <queue>50</queue>
</throttle>
<concurrency>maximum concurrency the service should expect
<queue>maximum queue length before requests should be rejected

If a configuration is not specified the throttle assumes a location of ffcpl:/etc/ConfigThrottle.xml. If that is not found the throttle will fail.

Changes to throttle configuration will be detected instantly.

Additional Arguments

Any addition arguments that are not id, configuration or uri are passed through to the underlying service unchanged.

Notes

The throttle is written as an NKF Asynchronous Accessor and as such does not consume and block threads for pending requests.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.