Sends a HTTP request for each record and retrieves the response as transformation output.
For each request you can have dynamic elements in the URL or in the request body that is sent. Provide variable names that are unique to the URL and request body and reference them there. For instance:
URL: | http://www.google.com/?q=${term} |
Input: | column1 |
Variable: | ${term} |
The URL to invoke. The URL will be pre-processed by replacing any variable names in it with the corresponding dynamic values.
String RequiredThe body of the request to invoke. The request body will be pre-processed by replacing any variable names in it with the corresponding dynamic values.
String RequiredThe maximum number of requests that may be fired at the same time.
Higher values may provide better throughput while it may also add load to the HTTP server.
int Optional