2 Home
gitea_admin edited this page 2026-03-11 14:42:39 +00:00

Stitch

Stitch is a cloud ETL service that integrates various data sources into a central data warehouse through various integrations.

Metadata

Property Value
Scheme stitch
Support Level Stable
Labels cloud,api,saas,bigdata
Version 4.10.2

Maven Dependency

<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-stitch</artifactId>
    <version>4.10.2</version>
</dependency>

Endpoint Properties

Name Type Required Default Description
tableName string The name of the destination table the data is being pushed to. Table names must be unique in each destination schema, or loading issues will occur. Note: The number of characters in the table name should be within the destination's allowed limits or data will rejected.
keyNames string A collection of comma separated strings representing the Primary Key fields in the source table. Stitch use these Primary Keys to de-dupe data during loading If not provided, the table will be loaded in an append-only manner.
region object EUROPE Stitch account region, e.g: europe
stitchSchema object A schema that describes the record(s)
connectionProvider object ConnectionProvider contain configuration for the HttpClient like Maximum connection limit .. etc, you can inject this ConnectionProvider and the StitchClient will initialize HttpClient with this ConnectionProvider
httpClient object Reactor Netty HttpClient, you can injected it if you want to have custom HttpClient
lazyStartProducer boolean false Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.
stitchClient object Set a custom StitchClient that implements org.apache.camel.component.stitch.client.StitchClient interface
token string Stitch access token for the Stitch Import API