Skip to main content

Data Collection

ConnXio (CX) supports various forms of orchestration most prominent among them is enrichment and this is fueled by data collection. Data collection refers to the act of getting data over HTTP as a transformations tep. This enables customers to collect data from all resources that support HTTP and use them within transformations, variable replacements and url generation. This page describes how to use and configure data collection.

Limitations and External demands

There are a few things to consider when using data collection, some pertain to the constraints on the process in CX internally but there are even more demands put on the external endpoints and resources that provide data. The following should always be considered and reviewed:

Data size

Be careful about how much data your endpoints or resources return. We spawn unending amounts of transformation sessions, but we have some hard limits on the amount of time a processes involving transformations are allowed to live. Currently this is 10 minutes, which is an eternity in a programming sense, if you have slow endpoints returning very large resources this will cause significant delays on processing and will in most cases make the whole process fail, either because of the time limit or resources provided by the session itself. As such we recommend keeping all data collection below 1 MB in size and under 100 KB for best performance.

Using proxy services that deliver trimmed data could be a good way to increase performance and decrease load.

Traffic

Data collection is performed every time an integration pipeline fires. This can generate a large amount of traffic. Be sure to test you endpoints and resources for the expected amount of traffic. Since CX processes transformations in parallel thousands upon thousands of requests can be fired at the same time at peak load. CX uses a staggering algorithm to stop endpoints from crashing under heavy load, but this is no guarantee that the integration will perform as expected.

Ensure that your endpoint or resource can handle the load

Extending Logging

CX will add an InterchangeId header to the intake request to facilitate for continued transactional logging on the sender side if applicable.

Availability

We provide variables for making data collection more robust, but by default if the http call fails the pipeline will be suspended. Please ensure that you have high uptime on your services.

How to add data collection

Add the "Data Collection" shape from the "Transformations" menu:

img

Add the necessary fields to your data collection. See below for an example:

img

  • Method: The verb to use for HTTP communication.
  • Rest Url: The endpoint to get the data from. This could be an API, data store or similar REST service.
  • Security Configuration: Select your security configuration from the list. See here for more information.
  • Variable name: The name used for the variable through CX. USe this name if you want to target the variable in a code component or variable replacement.
  • Use Content As Request Body: The current version of the content at the time of the data collection is sent to the collection endpoint as the body of the request. Default value is empty body.
  • Use Response As Content: The current content is replaced by the body returned by the data collection endpoint, this happens regardless of what is returned.
  • Headers: Add any custom header you might need. This can include custom Authorization if needed.
  • Current Message Content Type: The current content type of the message. Use this only if the content type of the message at this stage is different from the message format defined for the configuration. Used for variable replacement only.
  • Continue on 404: Turning this on means the data collection will continue if it cant find the resource its looking for. Be careful since this might make other transformations like code components fail.
  • Stop on empty: Stops if data is empty and status code is positive.

Retry

Data collection is currently using the backoff retry described on the Retry page.

Advanced error handling

By default, all failed requests will be retried according to the retry pattern. If the request is still not successful, the transaction will be logged as an error and terminated. Advanced error handling allows you to create rules for handling specific unsuccessful status codes beyond the standard pattern.

For legacy integration support (integrations created using DataCollection before Advanced Error Handling was integrated) there is a toggleable "Continue on 404".

img

Input                Type                               Description
Status codesint , -A comma-separated list of status codes on which the rule should act. A range of status codes can be defined by using '-', for instance, 401-408 will represent all status codes from and including 401 to and including 408.
ActionTerminate,
Continue
"Terminate" stops the transaction, while "Continue" continues the transaction, logging it as error unless something else is defined in the "Custom status" field
Custom statusstringBy default all transactions will be logged as "Error". This property overrides the default status.
Retrytrue,
false
If disabled, no retry attempts will be made and the Rule Action will trigger immediately. If enabled, the default retry pattern will run before the Rule Action triggers.