Braintree → ClickHouse
AI-first ETL from Braintree into ClickHouse. Governed entities, incremental sync, typed landing tables.
How Datrise loads Braintree into ClickHouse
Datrise syncs Braintree's transactions, customers, disputes, and settlement records into ClickHouse as a MergeTree table per source entity. Flexible or custom fields land in JSON or Map columns, and timestamps such as created, updated, and status changes are typed as DateTime64.
Sync is incremental: Datrise uses inserts into a ReplacingMergeTree keyed on stable id, so the latest version wins on merge, so re-runs update only what changed. Partition by month and order by (entity id, updated-at) for fast range scans. ClickHouse deduplicates asynchronously on merge, so Datrise uses ReplacingMergeTree and FINAL-safe queries rather than assuming immediate upserts.
Ideal for high-volume event analytics that need sub-second aggregation.
Endpoints
Braintree: PayPal-owned payment gateway for card and wallet transactions.
ClickHouse: Columnar OLAP engine for fast aggregations.
How Braintree entities map to ClickHouse
| Braintree entity | ClickHouse object | Notes |
|---|---|---|
| transactions | braintree_transactions | id PK · custom fields → JSON or Map columns |
| customers | braintree_customers | id PK · linked to braintree_transactions |
| disputes | braintree_disputes | id PK · linked to braintree_transactions |
| settlement records | braintree_settlement_records | id PK · linked to braintree_transactions |
FAQ
How does Datrise handle Braintree's custom fields in ClickHouse?
Flexible values are stored as JSON or Map columns, so new fields don't require a migration; strongly-typed fields — dates, numbers, and references — are promoted to native ClickHouse types.
How does the Braintree to ClickHouse sync stay up to date?
It runs incrementally — Datrise uses inserts into a ReplacingMergeTree keyed on stable id, so the latest version wins on merge.
Related pipelines
More destinations for Braintree
Early access
Connect Braintree to ClickHouse the easy way
Skip brittle scripts and manual exports. Join the waitlist to get a guided setup, AI-assisted mapping, and reliable incremental sync for this integration.