Specifying Hosts to Handle Requests
In a multi-host environment, you can specify which hosts can process specific types of requests, by including a single host or list of hosts in a RequestDefinition object. This can help with performance, allowing you to dedicate specific machines and threads for processing request types that are, for example, operating at a high volume or require more resources.
-
When logged in as an administrator, select the wrench icon dropdown at the top of the screen, then select Object.
-
In the Debug pages, choose RequestDefinition in the Select an Object field of the Object Browser.
-
From the list of RequestDefinition objects, select the object that you want to modify in order to specify a host or list of hosts.
-
Add host entry to the RequestDefinition attribute map. The value can be set to a single host, or multiple hosts separated by commas. For example:
Copy<Attributes>
<Map>
<entry key="hosts" value="hostA,hostB,hostC"/>
<entry key="maxThreads" value="1"/>
</Map>
</Attributes> -
Select Save to save the updated RequestDefinition object or Close to cancel changes.