Description:

This is the standard implementation of the SSL Context Map. This service is used to provide coordination between HandleHttpRequest and HandleHttpResponse Processors.

Configuring the HTTP Context Map:

The controller-services.xml file is located in the NiFi conf directory. The user may set up any number of controller services within this file.

This controller service exposes a single property named Maximum Outstanding Requests. This property determines the maximum number of HTTP requests that can be outstanding at any one time. Any attempt to register an additional HTTP Request will cause an error. The default value is 5000. Below is an example of the template for a StandardHttpContextMap controller service.

<?xml version="1.0" encoding="UTF-8" ?>
<services>
    <service>
        <identifier>http-context-map</identifier>
        <class>org.apache.nifi.http.StandardHttpContextMap</class>
        <property name="Maximum Outstanding Requests">5000</property>
    </service>
</services>
        

See Also:
HandleHttpRequest
HandleHttpResponse